$(document).ready(function() {

	$('body.fr img.arrow').hover(function() {
		$(this).attr("src", "img/arrow-rollover.png");
	},function() {
		$(this).attr("src", "img/arrow.png");
	});
	
	
	$('body.en img.arrow').hover(function() {
		$(this).attr("src", "../img/arrow-rollover.png");
	},function() {
		$(this).attr("src", "../img/arrow.png");
	});
	
	
	$(window).resize(function() {
		resizeWindow();	
	});
	
	
	resizeWindow();
	if ($('.gallery').length != 0) {
		$('.items').cycle({ 
		    speed:  'fast', 
		    timeout: 0, 
		    pager:  '.list', 
		    pagerAnchorBuilder: function(idx, slide) { 
		        // return selector string for existing anchor 
		        return '.list li:eq(' + idx + ') a'; 
		    } 
		});
	};
});

function resizeWindow(){
	var windowheight=$(window).height();
	$("div#patch").css({"height":(windowheight-981)+"px"});
}

	
	 
	
