var stDiv = '';
var intRow = '<TR align="center" height=48 vAlign="middle"><TD class=MnuItem width=100%><A class=MnuItem ';
var intRow2 = '';

// LOGO ECURIE 41
stDiv = '<DIV style="position:absolute; left:8; top:8"><IMG alt="www.ecurie41.org" border=0 height=140 src="Res/Logo200.gif" width=200></DIV>'

// MENU DE GAUCHE
stDiv = stDiv + '<DIV id=divMnuL style="position:absolute; left:8; top:150; width:180; margin:0">';
stDiv = stDiv + '<TABLE align="left" style="font:bold 10pt" width=100%><TBODY>';
stDiv = stDiv + intRow + 'href="Home.htm" title="Page d accueil">ACCUEIL</A></TD></TR>';
stDiv = stDiv + intRow + 'href="News.htm" title="Toutes les dernières infos ...">NEWS</A></TD></TR>';
stDiv = stDiv + intRow + 'href="Present.htm" title="Notre association, son histoire, nos coordonnées">PRESENTATION</A></TD></TR>';
stDiv = stDiv + intRow + 'href="Affilia.htm" title="Les comités et associtations dont l Ecurie dépend">AFFILIATION</A></TD></TR>';
stDiv = stDiv + intRow + 'href="Licence.htm" title="Pilote, copilote, commissaire : toutes les infos">SE LICENCIER</A></TD></TR>';
stDiv = stDiv + intRow + 'href="Racemap.htm" title="Les épreuves que nous organisons">NOS EVENEMENTS</A></TD></TR>';
stDiv = stDiv + intRow + 'href="Membres.htm" title="Tous nos membres sont ici ! Retrouvez vos amis et vos concurrents">NOS MEMBRES</A></TD></TR>';
stDiv = stDiv + intRow + 'href="Shop.htm" title="Portez des vêtements à nos couleurs !">LA BOUTIQUE</A></TD></TR>';
stDiv = stDiv + intRow + 'href="Links.htm" title="Une sélection de sites recommandés">NOS LIENS</A></TD></TR>';
stDiv = stDiv + '</TBODY></TABLE></DIV>';

// BANDEAU D'ANNONCES DEFILANTES
stDiv = stDiv + '<DIV id=divTop style="position:absolute; left:350; top:15; height:60; margin:0; background:#000000; border:2px inset">';
stDiv = stDiv + '<TABLE width=100%><TBODY><TR align="center" vAlign="middle"><TD><MARQUEE behavior="scroll" dataFormatAs="HTML" ';
stDiv = stDiv + 'direction="up" height=60 loop=0 scrollAmount=3 scrollDelay=100 style="font:bold 14pt; color:#00C0FF" width=100%><CENTER>';
stDiv = stDiv + '27 mars 2010 : rallye touristique à parcours secret,<BR>17&18 avril 2010 : rallye régional Solognot,<BR>15&16 mai 2010 : rallye national de la Vallée du Cher,<br>3&4 juillet 2010 : course de côte régionale de Fréteval.' ;
stDiv = stDiv + '</CENTER></MARQUEE></TD></TR></TBODY></TABLE></DIV>';

document.body.insertAdjacentHTML('AfterBegin', stDiv);

// BARRE DE NAVIGATION DU BAS DE PAGE
stDiv = '<HR class=HNav><H6>';
stDiv = stDiv + '[<A class=Hnav href="Home.htm">Accueil</A>]&nbsp;';
stDiv = stDiv + '[<A class=Hnav href="News.htm">News</A>]&nbsp;';
stDiv = stDiv + '[<A class=Hnav href="Present.htm">Présentation</A>]&nbsp;';
stDiv = stDiv + '[<A class=Hnav href="Affilia.htm">Affiliation</A>]&nbsp;';
stDiv = stDiv + '[<A class=Hnav href="Licence.htm">Se licencier</A>]&nbsp;';
stDiv = stDiv + '[<A class=Hnav href="Racemap.htm">Nos événements</A>]&nbsp;';
stDiv = stDiv + '[<A class=Hnav href="Membres.htm">Nos membres</A>]&nbsp;';
stDiv = stDiv + '[<A class=Hnav href="Shop.htm">La boutique</A>]&nbsp;';
stDiv = stDiv + '[<A class=Hnav href="Links.htm">Nos liens</A>]</H6><BR>';

divMain.insertAdjacentHTML('BeforeEnd', stDiv);

// FIN DE LA PAGE
var winWidth = document.body.scrollWidth;
var winHeight = document.body.offsetHeight - document.body.offsetTop - document.body.scrollHeight;
if (winWidth > 800) {
	divTop.style.pixelLeft = 350;
	divTop.style.pixelWidth = winWidth - 355;
	divMain.style.pixelWidth = winWidth - 210;
} else {
	divTop.style.pixelLeft = 300;
	divTop.style.pixelWidth = 495;
	divMain.style.pixelWidth = 550;
}
divMain.style.visibility = '';
