

jQuery(document).ready(function ()
{
	jQuery(".calendarSelectDate").datepicker();
	
	
	jQuery('.menu_row').hover(
		
		function () {
			jQuery(this).css({'background-color' : '#444444'});
			}, function (color) {
			jQuery(this).css({'background-color' : ''});
		});

});
