function fixPNG(){
	$('#carte').css('display','block');
	$('img[@src$=.png]').ifixpng();
}

function menuDeNoel(){
	var btnMenu = jQuery.makeArray($('.btnMenu'));
	var btnMenuHover = jQuery.makeArray($('.btnMenuHover'));
	
	var i = 0;
	jQuery.each(btnMenu,function(){
		    
		 
		 		    
		    $(this).mouseover(function(){
				      if($(this).attr("class") != 'btnMenuActif'){
					      var idBtnMenu = $(this).attr("id");
					      var btnMenu = $(this);
						var btnMenuHover = jQuery.makeArray($('.btnMenuHover'));
						jQuery.each(btnMenuHover,function(){
							    //alert($(this).attr('id'));
							    var idBtnMenuHover = idBtnMenu+'Hover';
						    if($(this).attr('id') == idBtnMenuHover){
							    							    $(this).css('display','inline');

							     btnMenu.css('display','none');
							    }
						
						});
				      }
				      
		    });
		    
		    
		      
	      
	
	});
	
	jQuery.each(btnMenuHover,function(){
		     $(this).mouseout(function(){
				     if($(this).attr("class") != 'btnMenuActif'){
					var idBtnMenuHover = $(this).attr("id");
					var btnMenuHover = $(this);
					var btnMenu = jQuery.makeArray($('.btnMenu'));
						jQuery.each(btnMenu,function(){
							    
							    var idBtnMenu = $(this).attr('id')+'Hover';
							    if( idBtnMenu == idBtnMenuHover){
							   //btnMenuHover.css('display','none');
							    $(this).css('display','inline');
							    }
						
						});
				      }
		    });
	});
}


function masqueSSmenu(ident){
var btnMenuActif = jQuery.makeArray($('.btnMenuActif'));


jQuery.each(btnMenuActif,function(){
    $(this).attr("class","btnMenu");
	var srcImage = $(this).attr('src');
	var newSrcImage = srcImage.substr(0,srcImage.length-7);
	newSrcImage =   newSrcImage.concat('.png');
	$(this).attr("src",newSrcImage);
});
}//fin de ma fonction

function parole(){
$(".parole").jCarouselLite({
		    btnNext: ".next",
		    btnPrev: ".prev",
		    vertical: true,
		    circular:false
		});
}



