$(function(){
	
	$(".img-off").css("display","none");

	$(".slider a").hover(function() {
		$(".slider a").removeClass("hover");
        $(this).addClass("hover");
		var apercu = $(this).children("img").attr("src").replace("miniature", "slide");
		var zoomimg = $(this).children("img").attr("src").replace("miniature", "image");
		$("#apercu").attr("src",apercu);
		$("#zoomimg").attr("href",zoomimg);
	});
});