$(document).ready(function(){  
	if(!$.browser.msie){
	$('.footer a[href][title]').qtip({
		content:{
			text:false    
	},
	position: {
		corner: {
			target: 'topRight',
			tooltip: 'bottomLeft'
		}
	}
	});
}

// Variable 'backOffice' définie dans common.xsl
if (backOffice != "back")
{
	$('.image_focus').each(function(){
		$(this).height($(this).find('img').height());
	});
}
                
$('.image_focus').hover(function(){
	$(this).find('img').css({'opacity': 0.85});
}, function(){
$(this).find('img').css({'opacity': 1});
});

$('.lien_editable div').each(function(){
	 $(this).width($(this).parent().width() - ($(this).next('a').width()+10));
});
});
