<!-------------------------------------------------------------------------->
<!-- DEBUT PRELOAD DES IMAGES (boutons actifs) -->
<!-------------------------------------------------------------------------->
function simplePreload()
{ 
  var args = simplePreload.arguments;
  document.imageArray = new Array(args.length);
  for(var i=0; i<args.length; i++)
  {
    document.imageArray[i] = new Image;
    document.imageArray[i].src = args[i];
  }
}
<!-------------------------------------------------------------------------->
<!-- DEBUT  -->
<!-------------------------------------------------------------------------->
function switchImage(imgName, imgSrc) 
{
  if (document.images)
  {
    if (imgSrc != "none")
    {
      document.images[imgName].src = imgSrc;
    }
  }
}
<!-------------------------------------------------------------------------->
<!-- DEBUT DU SCRIPT SELECTION/COPIE-->
<!-------------------------------------------------------------------------->

<!-------------------------------------------------------------------------->
<!-- DEBUT DU CODE POUR AJOUT DANS LES FAVORIS -->
<!-------------------------------------------------------------------------->
function AjoutFavo() {
   siteURL = "http://www.angelscoif.lassidomi.com"
   siteNOM = "Angel's Coiffure - Salon de coiffure Hommes - Femmes - Juniors"
    if ( navigator.appName != 'Microsoft Internet Explorer' ){
    	 /* Netscape 6+ ; Mozilla, FireFox et compagnie (K-Meleon ...) */
         window.sidebar.addPanel(siteNOM,siteURL,"");
       }
    else {
         window.external.AddFavorite(siteURL,siteNOM);
       }
}    	
<!-- FIN DU CODE POUR AJOUT DANS LES FAVORIS-->

<!-------------------------------------------------------------------------->
<!-- Affichage de la Date du jour (ex: Mardi 4 juillet 2006) sur 1 ligne
<!-------------------------------------------------------------------------->
function Affiche_Date_sur_1_ligne()
{var today = new Date();
var date = today.getDate();
var annee = today.getFullYear();
var date_statement = "";			
var h=today.getHours();
var m=today.getMinutes();
var s=today.getSeconds();
var time_statement = "";
var month = today.getMonth()+1;
var day_of_week = today.getDay();
	
	document.month="";
	document.day="";
	if (s<10)
		s="0"+s;
	if (m<10)
		m="0"+m;	
	if(month==1)
		{document.month="janvier";}
	if(month==2) 
		{document.month="f&eacute;vrier";}
	if(month==3) 
		{document.month="mars";}
	if(month==4)
		{document.month="avril";}
	if(month==5) 
		{document.month="mai";}
	if(month==6)
		{document.month="juin";}
	if(month==7)
		{document.month="juillet";}
	if(month==8) 
		{document.month="ao&ucirc;t";}
	if(month==9)
		{document.month="septembre";}
	if(month==10)
		{document.month="octobre";}
	if(month==11)
		{document.month="novembre";}
	if(month==12)
		{document.month="d&eacute;cembre";}
	if(day_of_week==0)
		document.day="Dimanche";
	if(day_of_week==1)
		document.day="Lundi";
	if(day_of_week==2)
		document.day="Mardi";
	if(day_of_week==3)
		document.day="Mercredi";
	if(day_of_week==4)
		document.day="Jeudi";
	if(day_of_week==5)
		document.day="Vendredi";
	if(day_of_week==6)
		document.day="Samedi";
	document.write(document.day+" "+date+" "+document.month+" "+annee+"&nbsp;&nbsp;&nbsp;&nbsp;"); // +h+":"+m+":"+s
}

<!-------------------------------------------------------------------------->
<!-- ENTETE COMMUNE
<!-------------------------------------------------------------------------->
function Entete()
{
	document.write('<div id="header1">'
	+ '<br><div style="text-align: right;font-size: 10px;font-weight: bold;color: #FFFFFF;">'
	+ '	<script language="javascript" type="text/JavaScript">'
	+ '		Affiche_Date_sur_1_ligne()'	
	+ '  	</script>'
	+ '</div>'		
	+ '</div>'
	+ '<div id="header1-middle">'
	+ '	<TABLE align="center" width="730" border="0" cellpadding="0" cellspacing="0">'
	+ '	<tr>'
	+ '		<td weight="50%" align="left" valign="top">'
	+ '			<img src="images/logo_75.gif" border="0" title="Angel\'s Coiffure - salon de coiffure Hommes et Femmes">'
	+ '		</td>'
	+ '		<td weight="50%" align="center" rowspan="2">'
	+ '			<!-- <img src="images/PeigneEtCiseaux.jpg" border="0" title="Salon pour vous Mesdames, pour vous messieurs et pour vos enfants">&nbsp;-->'
	+ '			<img src="images/fee.gif" border="0" title="Salon pour vous Mesdames, pour vous messieurs et pour vos enfants">&nbsp;'
	+ '			<br><img src="images/TexteEntete.gif" border="0" title="Salon pour vous Mesdames, pour vous messieurs et pour vos enfants">&nbsp;'
	+ '		</td>'
	+ '	</tr>'
	+ '	</TABLE>'
	+ '</div> <!-- Fin id="header1-middle" -->');
}

<!-------------------------------------------------------------------------->
<!-- BAS DE PAGE COMMUN (copyright)
<!-------------------------------------------------------------------------->
function Bas_De_Page()
{
	document.write('<TABLE align="center" style="background-color: #FEE4F1;" width="100%" border="0" cellspacing="0" cellpadding="0">' 
	+ '<tr>'
        + '  <td align="center">'
	+ '	<FONT color="#4169E1" size=1><b>Copyright &copy; Août 2006 - Site créé par <a href="http://www.creation.lassidomi.com" target=_top title="Cliquer pour accèder au site de création de l\'Assidomi">L\'AssiDomi</a></b></FONT>'
	+ '  </td>'        
        + '</tr>'	
	+ '</TABLE>'
	+ '<br><!--DEBUT CODE AJOUT FAVORIS (BOOKMARK)--><a href="javascript:void(AjoutFavo());" target="_self"><IMG src="images/ange_etoile.gif" border="0" onMouseOver="overlib(\'Ajoutez ce site dans vos Favoris ou Marque-pages\')" onMouseOut="nd()"></a><!--FIN CODE AJOUT FAVORIS (BOOKMARK)-->'); 
}
