jQuery.noConflict();
var actengid=0;
var actcatid=0;
//-----------------------------------------------------------------------
function setActiveEngine(engid)
{       		
		jQuery.ajax({
			type: "POST",
			url: "/includes/Ajax/getCategories.php",
			data: "engid="+engid,
			success: function(data)
			 {
			  if (data)			  
			  {			  				  				  	
			   document.getElementById("etap2").innerHTML=data;
			   //------------
			   if (actengid)
			   {			   	 
			   	document.getElementById("eng"+actengid).style.background='#ffffff'; 			 
			    document.getElementById("eng"+actengid).style.color     ='#434343'; 			 			   
			   }
			   actengid=engid;
			   document.getElementById("eng"+actengid).style.background='#007cfa'; 			 
			   document.getElementById("eng"+actengid).style.color     ='#ffffff'; 			 			   
			  }						  	
			 } 	
		});						
		return false;
 }
 function setActiveCategorie(catid)
 {       				  
   if (actcatid)
   {			   	 
   	document.getElementById("cat"+actcatid).style.background='#ffffff'; 			 
    document.getElementById("cat"+actcatid).style.color     ='#434343'; 			 			   
   }
   actcatid=catid;
   document.getElementById("cat"+actcatid).style.background='#007cfa'; 			 
   document.getElementById("cat"+actcatid).style.color     ='#ffffff'; 	
   //------------	 			   		  				 		
   document.getElementById("etap3").style.visibility='visible'; 	
		return false;
 } 
 function  prepareParams()
 { 	 	
 	document.getElementById("lupa").href='/search.html?DetailsSearcher[catid]='+actcatid;  	
 }
