<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

var transparent		= "40"		// MENU TOP TRANSPARENCY
var NNtransparent	= "0.4"		// NETSCAPE TRANSPARENCY
var showimage 		= "yes" 	// SHOW THE SMALL IMAGE ON THE MENU
var showdate		= "yes"		// SHOW THE DATE AND FLAGS ON THE PAGE
var dateLR		= "right"	// DATE LEFT OR RIGHT
var dateX		= "10"		// DATE X LOCATION
var dateY		= "79"		// DATE Y LOCATION


document.write('<DIV id="menulocation" class="printhide">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0"><tr><td>');
document.write('<DIV id="menutop" style="width : 150px;-moz-opacity: '+NNtransparent+'; filter:alpha(opacity='+transparent+');">');
document.write('<img src="picts/menu-top-1.gif" width="150" height="78"></a><br>');
document.write('</DIV>');
document.write('<img src="picts/menu-top-2.gif" width="168" height="52"></a><br>');


// START LINKS //
document.write('</td></tr><tr><td nowrap>');
document.write('<a href="index.html" class="menu">Home</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="news.htm" class="menu">News</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="history.htm" class="menu">History</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="service.htm" class="menu">Services</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="factory.html" class="menu">Factory Tour</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="gallery1.htm" class="menu">Projects</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="concert.htm" class="menu">Concert Diary</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="links.htm" class="menu">Links</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="contact.htm" class="menu">Contact Information</a>');

// COPY AND PASTE THE TWO LINES ABOVE TO ADD A NEW LINK

document.write('</td></tr><tr><td>');

   if (showimage == "yes") {
document.write('<img src="picts/menu-image.jpg" border="0"><br>');
}

document.write('<img src="picts/spacer.gif" width="150" height="1"></a><br>');

document.write('</td></tr></table></DIV>');


// START DATE SCRIPT
   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("<a href='fr.html'><img src=flag/fr.jpg border=0></a>")
document.write('&nbsp;&nbsp;&nbsp;')
//document.write("<a href='index.html'><img src=flag/all.jpg border=0></a>")
//document.write('&nbsp;&nbsp;&nbsp;')
document.write("<a href='index.html'><img src=flag/uk.gif border=0></a>")
document.write('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;')
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + ". ")
document.write(d.getDate() + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');
}

//  End -->
