//apply to div#logo, undo fix, then apply the fix again 
$(function(){
	
	/* gestion ie6 */
	if ($.browser.msie) {
	
		/* gestion transparence */
		//window.onload=function(){
		$(window).load(function () {
			setTimeout(function(){
				$('img[@src$=.png], .entete, .back_contact, .telephone_top').ifixpng();
				$('.menuTop').find('li').ifixpng();
				//alert('ok');
			},200);
		
		});
		
		/* affiche la main link et reconstruit le lien pour ie6 */
			$('.menuTop li').css("cursor","pointer");
			$('.menuTop li').click(function(){
				window.location.href= $(this).children('a').attr("href");
			});
	}
	
});
