// affichage aleatoire
function rand(n)
{
	var x;
	x=Math.round(Math.random()*100);
	x%=n;
	return x;
}
function robe_soiree()
{
	var url = new Array();
	url[0]='<img src="http://www.seduction-attitude.info/img/robe-soiree-01.jpg" width="635" height="200" alt="Commentaire" title="Vos Robes de Soirée, toute une sélection de robes pour vos soirées séduction!">';
	url[1]='<img src="http://www.seduction-attitude.info/img/robe-soiree-02.jpg" width="635" height="200" alt="Commentaire" title="Vos Robes de Soirée, toute une sélection de robes pour vos soirées séduction!">';
	url[2]='<img src="http://www.seduction-attitude.info/img/robe-soiree-03.jpg" width="635" height="200" alt="Commentaire" title="Vos Robes de Soirée, toute une sélection de robes pour vos soirées séduction!">';
	var n=rand(3); 
	document.write(url[n]);
}
function escarpin()
{
	var url = new Array();
	url[0]='<img src="http://www.seduction-attitude.info/img/escarpin-talon-highheels-01.jpg" width="635" height="200" alt="Découvrez notre sélection d\'escarpins pour allonger votre silhouette!" title="Vos Escarpins, toute une sélection d\'escarpins bout pointu et bride cheville!">';
	url[1]='<img src="http://www.seduction-attitude.info/img/escarpin-talon-highheels-02.jpg" width="635" height="200" alt="Découvrez notre sélection d\'escarpins pour allonger votre silhouette!" title="Vos Escarpins, toute une sélection d\'escarpins ouverts et bout pointu!">';
	url[2]='<img src="http://www.seduction-attitude.info/img/escarpin-talon-highheels-03.jpg" width="635" height="200" alt="Découvrez notre sélection d\'escarpins pour allonger votre silhouette!" title="Vos Escarpins, toute une sélection d\'escarpins ouverts à talons, bout pointu et bride cheville!">';
	var n=rand(3); 
	document.write(url[n]);
}

