$(document).ready(function(){
	try
	{
		
		
			$("input[type='submit'].ui-state-default").hover(
			function(){ 
				$(this).addClass("ui-state-hover"); 
			},
			function(){ 
				$(this).removeClass("ui-state-hover"); 
			}
		);
		
		$("input.jqui-datepicker").datepicker(
					{showOn: 'both', 
					buttonImage: '/wp-content/themes/nycnda/images/calendar.png', 
					buttonImageOnly: true,
					minDate: +1, 
					maxDate: '+1Y'});
		
		$("div.newsflash").fadeIn("slow");
	}
	catch(err)
	{
		alert('There was a JavaScript error. Try refreshing the page.');
	}
	
});