function change_style(objet, style)
{
	document.getElementById(objet).setAttribute('class',style);
	document.getElementById(objet).setAttribute('className',style);
}

function fleche_rollover(element,image)
{
	 newImg = new Image();
	 newImg.src=image;
	 if (document.getElementById) {
	     document.getElementById(element).src=newImg.src;
	 }
	 else if(document.all) {
		 document.all[element].src=newImg.src;
	 }
}


function survol_bouton_meilleures_ventes_vers_theme(id)
{
	
			if (document.all)
				{
				document.getElementById(id).style.setAttribute('cssText','margin:0px;padding:0px;border:0px;height:190px;width:40px;display:block');
				}
			document.getElementById(id).setAttribute('style','margin:0px;padding:0px;border:0px;height:190px;width:40px;display:block');
		
	}
function quit_bouton_meilleures_ventes_vers_theme(id)
{
	
	if (document.all)
				{
				document.getElementById(id).style.setAttribute('cssText','margin:0px;padding:0px;border:0px;height:190px;width:40px;display:none');
				}
			document.getElementById(id).setAttribute('style','margin:0px;padding:0px;border:0px;height:190px;width:40px;display:none');
	}


