
(function($) {
	$(function() {
		
		///// SURVOL /////
		(function() {
			$('[rel="hoverEffect"]').each(function() {
				// L'element
				var elt = $(this);
				// Les dimensions
				var w = elt.width();
				var h = elt.height();
				// Les effets
				elt.children('[rel="onHover"]').css({
					'position' : 'absolute',
					'z-index'  : 2,
					'top'      : 0,
					'left'     : 0,
					'width'    : w,
					'height'   : h,
					'opacity'  : 0
				}).siblings().css({
					'z-index'  : 1
				});
			})
			$('[rel="hoverEffect3"]').each(function() {
				// L'element
				var elt = $(this);
				// Les dimensions
				var w = elt.width();
				var h = elt.height();
				// Les effets
				elt.children('[rel="onHover"]').css({
					'position' : 'absolute',
					'z-index'  : 2,
					'top'      : 0,
					'left'     : 0,
					'width'    : w,
					'height'   : h,
					'opacity'  : 0
				}).siblings().css({
					'z-index'  : 1
				});
			})
			.mouseenter(function(e){ $(this).children('[rel="onHover"]').stop(true, true).animate({'opacity' : 0.75}, 400); })
			.mouseleave(function(e){ $(this).children('[rel="onHover"]').stop(true, true).animate({'opacity' : 0}, 400); }).mouseleave();
		}());
		
		///// SURVOL SUR MINIS PAGE PRODUIT /////
		(function() {
			$('[rel="hoverEffect2"]').each(function() {
				// L'element
				var elt = $(this);
				// Les dimensions
				var w = elt.width();
				var h = elt.height();
				// Les effets
				elt.children('[rel="onHover2"]').css({
					'position' : 'absolute',
					'z-index'  : 2,
					'top'      : 0,
					'left'     : 0,
					'width'    : w,
					'height'   : h,
					'opacity'  : 0.60
				}).siblings().css({
					'z-index'  : 1
				});
			})
			.mouseenter(function(e){ $(this).children('[rel="onHover2"]').stop(true, true).animate({'opacity' : 0}, 400); })
			.mouseleave(function(e){ $(this).children('[rel="onHover2"]').stop(true, true).animate({'opacity' : 0.60}, 400); }).mouseleave();
		}());
		
		
		
	});
}(jQuery));





