$(document).ready(function(){	
	$("li.unselected a span").fadeTo(10, 0); // Opacité des boutons ŕ 0 au charge,emt de la page
	
	$("li.unselected a span").hover(function(){
		$(this).stop();
		$(this).fadeTo("slow", 1.0);
	},function(){
		$(this).stop();
		$(this).fadeTo("slow", 0);
	});
	
	$('#footer_medias a img[title]').tooltip({
		tip: '#tip',
		delay: 0
	});
	
	liensExternes();
});

function liensExternes(){
	$("a.lienExt, a.lienExt-inv").click(function(event){
		window.open( $(this).attr('href') );
        return false;
	});
}