 jQuery(document).ready(function($){
   $(".showHide").click(function(){
    $('#showHide').slideToggle()
   });
   
	$("#dateFrom").datepicker({ dateFormat: 'yy-mm-dd',
							    firstDay: 1,
								minDate: 0,
								onSelect:function(theDate){
									$("#dateTo").datepicker('option','minDate',new Date(theDate))
								}
							  });
	$("#dateTo").datepicker({ dateFormat: 'yy-mm-dd',
							  firstDay: 1,
							  minDate: 1,
						    });
   
 });
