jQuery(document).ready(function(){
	jQuery("#reservation_day").datepicker(
		{ 
			dateFormat: 'dd/mm/yy' ,
			dayNamesMin: ['Dom', 'Lun', 'Mar', 'Mie', 'Jue', 'Vie', 'Sab'], 
			monthNames: ['Enero', 'Febrero', 'Marzo', 'Abril', 'mayo', 'Junio', 'Julio', 'Agosto', 'Semptiembre', 'Octubre', 'Noviembre', 'Diciembre']
		}
	);
	
	jQuery("#home-strip .box").bind("mouseover",function(){
		jQuery("> .details",this).stop().animate({top: 110},500);
	});
	jQuery("#home-strip .box").bind("mouseout",function(){
		jQuery("> .details",this).stop().animate({top: 165},500);
	});
});
