$(document).ready(function() {

/* recupere l'image du noeud htmlcontent */ 
$(".gazellesNews ul li").each(function(){
	if($(this).find(".hide img:first").attr("src")){
		var imgSrc = $(this).find(".hide img:first").attr("src");
		var imgAlt = $(this).find("h4 a").html();
		var aHref = $(this).find("h4 a").attr("href");
		$(this).find(".DateImg").prepend("<a href='"+aHref+"' title='"+imgAlt+"' class='image' target='_blank'><img src='"+imgSrc+"' alt='"+imgAlt+"' width='120' height='80' /></a>");
	}
});
/* fixe la marge du bloc 'ecrivez aux gazelles'*/

if ( $.browser.msie ) {
if ($.browser.version < 8.0) {
		$(".gazellesEcrire").css("margin","8 0 0 0");
	};
}
	
});
