$(document).ready(function() {
	$('#slider2').cycle({
		fx: 'fade'
	});
	
	//DATEPICKER
	//getter
	var showOn = $( ".row .calendar" ).datepicker( "option", "showOn" );
	//setter
	$( ".row .calendar" ).datepicker( "option", "showOn", 'both' );
	$(function mydate(){
		// Datepicker
		$('#datepicker').datepicker({
			showOn: 'both'
		});
		//hover states on the static widgets
		$('#dialog_link, ul#icons li').hover(
			function() { $(this).addClass('ui-state-hover'); }, 
			function() { $(this).removeClass('ui-state-hover'); }
		);
	});
});
