function ViderImage() {
    $("#afficheimage").css('display','none');
    $("#afficheimage").html('');
}
$(function(){
    $("#texte a").mouseover(
        function() {
            if ((typeof(window['a']) != "undefined")) {clearTimeout(a);}
			lien=$(this).attr('href');
			if (lien.substr(lien.lastIndexOf('.'))==".jpg" || lien.substr(lien.lastIndexOf('.'))==".gif") {
                $("#afficheimage").css('display','block');
				$("#afficheimage").html('<div style="border: 4px #FF7401 solid;padding: 2px;background-color: #000000;color: #FFFFFF;"><img title="Cliquez pour effacer" src="'+lien+'" style="border: 2px #FFC501 solid;"/></div>');
			}
            a=setTimeout(ViderImage,2500);
        } 
    ); 
    $("#afficheimage").click(
        function() {
            $("#afficheimage").css('display','none');
			$("#afficheimage").html('');
        } 
    );
	$("hr.spip").css('display','none');
	$("hr.spip").before("<div style=\"padding: 10px 0px; height:5px;width: 100%; background: transparent url('IMG/design/divider.gif') repeat-x 50% 50% ;clear: both;\"/>");
});

