$("#corps img").each(function () {
	align = $(this).attr("align");
	width = $(this).attr("width");
	height = $(this).attr("height");
	if(align=="right")
		{
		 $(this).css("margin-right","0");
		 $(this).css("padding-right","0");
		 }
	if(align=="left")
		{
		 $(this).css("margin-left","0");
		 $(this).css("padding-left","0");
		 }
	if(align=="")
		{
		$(this).css("margin-right","0");
		$(this).css("margin-left","0");
		$(this).css("padding-right","0");
		$(this).css("padding-left","0");
		}
	if(width<100 && height<100)
		$(this).css("border","none");
});



$("#corps a").each(function () {
							 
	lien = $(this).attr("href");
	if(lien.substr((lien.length-4),4) == ".jpg" && $(this).attr("class") != "highslide")
		{
		//alert(lien);
		$(this).attr("class","highslide");
		$(this).attr("onclick","return hs.expand(this);");
		$(this).find("img").css("border","none");
		}
	});


open_ext_link();

if(afficher_gmap)
	load();

