//script pour le menu //

var transparent		= "40"		// MENU TOP TRANSPARENCY
var showimage 		= "yes" 	// SHOW THE SMALL IMAGE ON THE MENU
var imaglink		= "../index.html"	// SMALL IMAGE PAGE LINK
var showdate		= "yes"		// SHOW THE DATE ON THE PAGE
var dateLR		= "right"	// DATE LEFT OR RIGHT
var dateX		= "10"		// DATE X LOCATION
var dateY		= "106"		// DATE Y LOCATION


document.write('<DIV id="menulocation">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0"><tr><td>');
document.write('<DIV id="menutop" style="width : 150px; filter:alpha(opacity='+transparent+');">');
document.write('<img src="../images/menu_top1.gif" width="150" height="78"></a><br>');
document.write('</DIV>');
document.write('<img src="../images/menu_top2.gif" width="168" height="52"></a><br>');


// LES LIENS //


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="../eng/home.html" class="menu">Home</a>');


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="../eng/services.html" class="menu">Services</a>');


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="../eng/decorations.html" class="menu">Decorations</a>');


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="../eng/invitations.html" class="menu">Invitations</a>');


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="../eng/limo.html" class="menu">Limousines</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="../eng/dj.html" class="menu">DJ</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="../eng/tuxedos.html" class="menu">Tuxedos</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="../eng/testimonies.html" class="menu">Testimonies</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="../eng/contact.html" class="menu">Contact Us</a>');


   if (showimage == "yes") {
document.write('<a href="'+imaglink+'"><img src="../images/bagues.jpg" border="0"></a><br>');
}

document.write('</td></tr></table></DIV>');


// SCRIPT POUR INSCRIRE LA DATE (EN ANGLAIS)
   if (showdate == "yes") {

document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
var d=new Date()
var weekday=new Array("Sunday,","Monday,","Tuesday,","Wednesday,","Thursday,","Friday,","Saturday,")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getDate() + " ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}

//  fin -->