// JavaScript Affiche News
function rand_number(n)
{
	var x;
	x=Math.round(Math.random()*100);
	x%=n;
	return x;
}
// Affiche Aléatoire
function banner()
{
	var img = new Array();
	<!-- vous pouvez rajouter ou supprimez des images -->
	img[0]='<a href="films/red_tails.php"><img src="../Images_films/red_tails/red_tails_02.jpg" border=0 width="134" height="193" alt="Red Tails"></a>';
	img[1]='<a href="films/lordre_et_la_morale.php"><img src="../Images_films/lordre_et_la_morale/lordre_et_la_morale_02.jpg" border=0 width="134" height="193" alt="l ordre et la morale"></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]);
}
function banner1()
{
	var img = new Array();
	<!-- vous pouvez rajouter ou supprimez des images -->
	img[0]='<a href="films/35_ticking.php"><img src="../Images_films/35_ticking/35_ticking_02.jpg" border=0 width="134" height="193" alt="35 ticking"></a>';
	img[1]='<a href="films/think_like_a_man.php"><img src="../Images_films/think_like_a_man/think_like_a_man_02.jpg" border=0 width="134" height="193" alt="think like a man"></a>';
	var n=rand_number(2);
	document.write(img[n]);
}
function banner2()
{
	var img = new Array();
	<!-- vous pouvez rajouter ou supprimez des images -->
	img[0]='<a href="films/oka.php"><img src="../Images_films/oka/oka_02.jpg" border=0 width="134" height="193" alt="oka"></a>';
	img[1]='<a href="films/joyful_noise.php"><img src="../Images_films/joyful_noise/joyful_noise_02.jpg" border=0 width="134" height="193" alt="Joyful Noise"></a>';
	var n=rand_number(2);
	document.write(img[n]);
}
function banner3()
{
	var img = new Array();
	<!-- vous pouvez rajouter ou supprimez des images -->
	img[0]='<a href="films/30_degres_couleur.php"><img src="../Images_films/30_degres_couleur/30_degres_couleur_02.jpg" border=0 width="134" height="193" alt="30 degres couleur"></a>';
	img[1]='<a href="films/black_power_mix_tape.php"><img src="../Images_films/black_power_mix_tape/black_power_mix_tape_02.jpg" border=0 width="134" height="193" alt="black power mixtape"></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]);
}
function banner4()
{
	var img = new Array();
	<!-- vous pouvez rajouter ou supprimez des images -->
	img[0]='<a href="films/politics_of_love.php"><img src="../Images_films/politics_of_love/politics_of_love_02.jpg" border=0 width="134" height="193" alt="Politics of Love"></a>';
	img[1]='<a href="films/winnie.php"><img src="../Images_films/winnie/winnie_02.jpg" border=0 width="134" height="193" alt="winnie"></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]);
}
function banner5()
{
	var img = new Array();
	<!-- vous pouvez rajouter ou supprimez des images -->
	img[0]='<a href="films/i_will_follow.php"><img src="../Images_films/i_will_follow/i_will_follow_02.jpg" border=0 width="134" height="193" alt="i will follow"></a>';
	img[1]='<a href="films/securite_rapprochee.php"><img src="../Images_films/securite_rapprochee/securite_rapprochee_02.jpg" border=0 width="134" height="193" alt="securite rapprochee"></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]);
}
function banner6()
{
	var img = new Array();
	<!-- vous pouvez rajouter ou supprimez des images -->
	img[0]='<a href="films/le_mot_de_trop.php"><img src="../Images_films/le_mot_de_trop/le_mot_de_trop_02.jpg" border=0 width="134" height="193" alt="le mot de trop"></a>';
	img[1]='<a href="films/marley.php"><img src="../Images_films/marley/marley_02.jpg" border=0 width="134" height="193" alt="marley"></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]);
}
