function changenews(i)
{ 
	 
	
		Element.hide('content1');
		Element.hide('content2');
		Element.hide('content3');
		Element.hide('content4');
	   
	   if(i==2)Effect.toggle('content2','appear',{duration:1});
	    else if(i==1)Effect.toggle('content1','appear',{duration:1});
	   else if(i==3)Effect.toggle('content3','appear',{duration:1});
 	   else if(i==4)Effect.toggle('content4','appear',{duration:1});
return true;
}
function launchover(i,j)
{	   

	Element.hide('menuunder'+i);
	
	Element.show('menuover'+i);
		
	Element.hide('menuunder'+j);
	Element.show('menuover'+j);
	
	return true;
}	
function fermerover(i,j)
{
	Element.hide('menuover'+i);
	Element.show('menuunder'+i);  
	
		
	
	Element.hide('menuover'+j); 
	Element.show('menuunder'+j);
	
	
	return true;
}	
function launch(i)
{
	Effect.Appear('popup'+i,{duration:0.2});
}	
function fermer(i)
{	   
	
	Effect.BlindUp('popup'+i,{duration:0.2});	
	
}
