// JavaScript Affiche News
function rand_number(n)
{
	var x;
	x=Math.round(Math.random()*100);
	x%=n;
	return x;
}
// Affiche Aléatoire
function pub_1()
{
	var img = new Array();
	<!-- vous pouvez rajouter ou supprimez des images -->
	img[0]='<a href="http://www.afro-shop.fr" target="_blank"><img src="../pub/pub_afro_shop_120x600_femme.jpg" border="0" alt="Afro-Shop.fr" /></a>';
	img[1]='<a href="http://www.afro-shop.fr" target="_blank"><img src="../pub/pub_afro_shop_120x600_homme.jpg" border="0" alt="Afro-Shop.fr" /></a>';
	<!-- attention, le nombre entre parenthese doit etre egal aux derniers entre crochet +1 exemple : ici 2+1=3 -->
	var n=rand_number(2); 
	document.write(img[n]);
}
