/*****************************************
Par Florian le lundi 8 février 2010

crée une entête pour les newsletters
avec un lien de redirection
******************************************/

var $j = jQuery.noConflict();

$j(document).ready(function()
{
	/* crée une div placée en absolue avec top:0 et left:0 */
	$j("body :eq(0)").before("<div id='retourPA' style='z-index:9000;background-color:black;color:white;font-size:12px;font-weight:bold;padding:5px 5px 7px 5px;width:165px;-moz-border-radius-bottomright: 10px;position:fixed!important;position:absolute;top:0px;left:0px;'><a href='../les_lettres.php' style='text-decoration:none;'><div style='float:left;'><img src='../img/fleche_retour_ou.gif' alt='' style='border:0;position:relative;top:9px;margin-right:10px;'></div><span style='color:white;text-decoration:underline;'>Revenir au site <br>de Point-Afrique</span></a></div>");
	
	/* change l'image quand la souris passe dessus */
	$j("#retourPA a, ").hover(
	function(){
		$j("#retourPA img").attr("src","../img/fleche_retour_ov.gif");
	},
	function(){
		$j("#retourPA img").attr("src","../img/fleche_retour_ou.gif");
	});
	
	
});