		$('.fotos').cycle({ 
			fx:     'fade',  //uncover
			prev:   '#prev', 
			next:   '#next', 
			timeout: 5000,
			speed: 	 1000,
			pager:  '#nav',
			pagerAnchorBuilder: function(idx, slide) { 
			return '<a href="#"></a>'; 
		}
		});	
      $(".fotos").hover(function() {
		   $("#slides").cycle('pause');
		}, function() {
		   $("#slides").cycle('resume');  
		});	
		
$(document).ready(function()			{

	$(".menu").delay(1000).animate({ top: "65px" }, 1000, "easeOutBounce");
	$(".maandaanbieding").delay(1500).animate({ top: "280px" }, 1000, "easeOutBounce");
	$(".catering").delay(2000).animate({ top: "443px" }, 1000, "easeOutBounce");
	
	//$(".foto-holder").hide();
	//$(".foto-holder").delay(3000).fadeIn();	


    $(".menu img").hover(function() {
			$(this).stop().animate({ width: "229px", marginLeft: "-20px", marginTop: "10px" }, 200, "easeOutExpo"); 	
	}, function() {
			$(this).stop().animate({ width: "249px", marginLeft: "0px", marginTop: "0px" }, 200, "easeOutExpo"); 	
	});
    $(".maandaanbieding img").hover(function() {
			$(this).stop().animate({ width: "180px", marginLeft: "-20px", marginTop: "10px" }, 200, "easeOutExpo"); 	
	}, function() {
			$(this).stop().animate({ width: "200px", marginLeft: "0px", marginTop: "0px" }, 200, "easeOutExpo"); 	
	});
    $(".catering img").hover(function() {
			$(this).stop().animate({ width: "160px", marginLeft: "-120px", marginTop: "10px" }, 200, "easeOutExpo"); 	
	}, function() {
			$(this).stop().animate({ width: "180px", marginLeft: "0px", marginTop: "0px" }, 200, "easeOutExpo"); 	
	});
	
});		
