var x = 0;
$(document).ready(function() {
 //  	$("a").click(function() {
//	     alert("Hello world!");
//	   });
	$(function() {
		$("input.date").datepicker({ dateFormat: 'dd/mm/yy' });
	
		$('a.gallery').lightBox({fixedNavigation:true});
		
	});
	$(".book input.date").change(function() {
		$(this).addClass('focused')
	});
	$('.btnbook').click(function(){
		
	})
    
	f1();

	

 });	
	function f1(){
		x++;
		$("#feature"+x).animate({ marginTop: "0px"}, 0);
		$("#feature"+x).show()
		$("#feature"+x).animate({ marginTop: "-300px"}, 5000, "linear", function(){ $("#feature"+x).hide(); f1(); } );
		if (x==4){
			x=0;
		}
	}