//fade the fotos banner on hover
$("div#FotoBox").hover(
	function(){
		$("div#FotoBoxCover").fadeOut(100);
		},
	function (){
		$("div#FotoBoxCover").fadeIn(100);
	}
);

// flyer carousel
$(document).ready(function() {
    $('#FlyerCarousel').cycle({
		fx: 'fade',
    speed:    1000,
    timeout:  6000
	});
});