/**
 * JQUERY IMAGE OMBRE PLUGIN v1.0 :
 * Plugin jQuery d'ombrage d'images.
 * @author Altitude Creation
 */
(function($) {				
		
		$.fn.imageombre = function(){
			
			this.each(function() {
				var offset = $(this).offset();
				var top = offset.top - 16; // offset.top -val ou val correspond au redecalage du top de la classe zoom
				var left = offset.left - 18; // offset.top -val ou val correspond au redecalage du margin-left de la classe zoom
				var height = $(this).height(); // height de l'image en cours
				var width = $(this).width(); // width de l'image en cours
				
				// On place des div avant que les elements de classe .zoom ne soient placées dans le code
				$(this).before("<div style='background:url(images/ombre_img_up_left.jpg) no-repeat left top;width:40px;height:40px;position:absolute;z-index:1;border:none;left:"+ left +"px;top:"+ top +"px;'></div>"
								+ "<div style='background:url(images/ombre_img_up_right.jpg) no-repeat right top;width:40px;height:40px;margin-left:" + ($(this).width() - 7) + "px;position:absolute;z-index:1;left:"+ left+"px;top:"+ top +"px;'></div>"
								+ "<div style='background:url(images/ombre_img_up_center.jpg) repeat-x top;height:40px;width:" + ($(this).width() + 12) + "px;margin-left:10px;position:absolute;z-index:0;left:"+ left +"px;top:"+ top +"px;'></div>"
								+ "<div style='background:url(images/ombre_img_left.jpg) repeat-y left;width:40px;height:"+$(this).height()+"px;position:absolute;z-index:0;margin-top:10px;left:"+ left +"px;top:"+ top +"px;'></div>"
								+ "<div style='background:url(images/ombre_img_down.jpg) repeat-x bottom;height:40px;width:" + ($(this).width() + 12) + "px;position:absolute;z-index:0;margin-top:" + ($(this).height() -8) + "px;margin-left:10px;left:"+ left +"px;top:"+ top +"px;'></div>"
/* il y avait 112px a la place de height*/						+ "<div style='background:url(images/ombre_img_right.jpg) repeat-y right;height:"+$(this).height()+"px;width:40px;position:absolute;z-index:0;margin-left:" + ($(this).width() -7) +"px;margin-top:10px;left:"+ left +"px;top:"+ top +"px;'></div>"
								+ "<div style='background:url(images/ombre_img_down_left.jpg) no-repeat left bottom;width:40px;height:40px;float:left;;margin-top:" + ($(this).height() -8) + "px;margin-right:-50px;position:absolute;z-index:1;left:"+ left +"px;top:"+ top +"px;'></div>"
								+ "<div style='background:url(images/ombre_img_down_right.jpg) no-repeat right bottom;width:40px;height:40px;float:left;margin-left:" + ($(this).width() -7) +"px;margin-top:" + ($(this).height() -8) + "px;position:absolute;z-index:1;left:"+ left +"px;top:"+ top +"px;'></div>");
			
		});
		
};
	

})(jQuery);
