
(function($){
$.extend({ dequeue : function(elem, effect) {
$(elem).dequeue(effect);
}
});
})(jQuery);



	function correctPNG(){
   for(var i=0; i<document.images.length; i++){
     var img = document.images[i]
     var imgName = img.src.toUpperCase()
     if (imgName.substring(imgName.length-3, imgName.length) == "PNG"){
       var imgID = (img.id) ? "id='" + img.id + "' " : ""
       var imgClass = (img.className) ? "class='" + img.className + "' " : ""
       var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
       var imgStyle = "display:inline-block;" + img.style.cssText
       if (img.align == "left") imgStyle = "float:left;" + imgStyle
       if (img.align == "right") imgStyle = "float:right;" + imgStyle
       if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle      
       var strNewHTML = "<div " + imgID + imgClass + imgTitle
       + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
        + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
       + "(src=\'" + img.src + "\', sizingMethod='scale');\"></div>"
       img.outerHTML = strNewHTML
       i = i-1
     }
   }
   /////  This part handles background png's (Koen Betsens)
   for(i=0;i<document.all.length;i++){
      bg=document.all[i].currentStyle.backgroundImage;
      if(bg.toUpperCase().substr(bg.length-5,3)=='PNG'){
         if(bg.search('%20')>0){bg=bg.replace('%20',' ')}
         document.all[i].style.backgroundImage='none';
         document.all[i].style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale src='"+bg.substr(5,bg.length-7)+"')"
      }
   }
}
 
if (navigator.appName == "Microsoft Internet Explorer") {
	window.attachEvent("onload", correctPNG); 
}


function menu_deroul(id,type){
	if(type==1){
	document.getElementById(id+'_ret').style.visibility='visible';
	document.getElementById('ss_'+id).style.visibility='visible';
	}else if(type==3){
	document.getElementById(id+'_ret').style.visibility='visible';
	}else if(type==4){
	document.getElementById(id+'_ret').style.visibility='hidden';
	}else{
	document.getElementById(id+'_ret').style.visibility='hidden';
	document.getElementById('ss_'+id).style.visibility='hidden';
	}
}

function menu_gauche_style(nom,type){
	if(type==1){
		document.getElementById(nom).className='item_sousmenu_actif';
	}
	if(type==0){
		document.getElementById(nom).className='item_sousmenu';
	}
}



function changer(u) {
var urll = u;
document.titre.src = urll;
}


function lien_newsletter(){
var mail=$("#text_mail_news").attr("value");

$("#liensdunews").attr("href","pages/inscription_newsletter.php?height=100&width=300&modal=true&mailnews="+mail);

}


function chg_slide(id,total_id){
	
	document.getElementById('barre'+id).style.backgroundImage='url("css/images/barre_rubrique_bas.gif")';
	for(i=1;i<=total_id; i++ ){
		//alert('i:'+i);
		if(i!=id){
			document.getElementById('barre'+i).style.backgroundImage='url("css/images/barre_rubrique.gif")';
		}
	}
}
