$("#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");
});


open_ext_link();

if(afficher_gmap)
	load();

