$('document').ready(function()
	{
		$('a[rel]').each(function()
			{
				if($(this).attr('rel') == 'external')
					{
						$(this).attr('target', '_blank');
					}
			}
		);
		
		$('img[resize]').click(function()
			{
				AfficherImg(this);
			}
		);

		/*$('.produitPLV > div').click(function()
			{
				AfficherSwf(this);
			}
		);*/
	}
);


function AfficherImg(img)
	{
		var SRC = $(img).attr('resize');
		var HTMLTexte = '<div id="noir"></div><div id="MyImg" style="z-index:999;text-align:center;left:0;width:100%;height:100%;position:fixed;" ><img src="'+SRC+'" /></div>';		
		$('body').append(HTMLTexte);
		var Taille = $('#MyImg > img').height();
		var NewTaille = ($('#MyImg').height() - Taille)/2;
		//$('#MyImg').css('top', NewTaille+'px');
		$('#MyImg').css('top', '100px');
		$('#MyImg').click(function()
			{
				$('#MyImg').remove();
				$('#noir').remove();
			});
		$('#noir').click(function()
			{
				$('#MyImg').remove();
				$('#noir').remove();
			});
	}
	
function AfficherSwf(swf)
	{
		src = $(swf).clone();
		src.find(':last-child').css('height','100%');
		src.find(':last-child').css('width','100%');
		src = src.html();
		var HTMLTexte = '<div id="noir"></div><div id="MyImg" style="z-index:999;text-align:center;left:0;width:100%;height:100%;position:fixed;" >'+src+'</div>';		
		$('body').append(HTMLTexte);
		$('#MyImg').css('top', '100px');
		$('#MyImg').click(function()
			{
				$('#MyImg').remove();
				$('#noir').remove();
			});
		$('#noir').click(function()
			{
				$('#MyImg').remove();
				$('#noir').remove();
			});
	}
