$(document).ready(function(){
		
		$(".dateInput").datepicker({numberOfMonths:1});	
		
		$('#rotateImages').innerfade({ speed: 'slow', timeout: 3500, type: 'random_start', containerheight: '234px', runningclass: 'rotateImages' }); 
	
		$(".slideOut").hide();
	
		$("#showList").css({'color': '#66b360', 'font-style':'underline', 'text-decoration':'underline', 'cursor':'pointer'}).click(function () {
			  $(".slideOut").slideToggle("slow");
		});

});