$(document).ready(function() {  

	$(".mn-rollover").hover(
		function(){
			if($(this).attr("src").indexOf("_active") == -1) {
				var newSrc = $(this).attr("src").replace(".gif","_active.gif#hover");
				$(this).attr("src",newSrc);
			}
		},
		function(){
			if($(this).attr("src").indexOf("_active.gif#hover") != -1) {
				var oldSrc = $(this).attr("src").replace("_active.gif#hover",".gif");
				$(this).attr("src",oldSrc);
			}
		}
	);
	
	$(".comingsoon").hide();
	$('.gallerie').mouseover(function() {
		$('.comingsoon').show(200);
		return false;
	});
	$('.gallerie').mouseout(function() {
		$('.comingsoon').hide(200);
		return false;
	});
	
	$('#gallerie-photos').jqGalScroll({height:500,width:630,ease:'easeInOutCubic',speed:1000});

});  
