<!-- Begin


// Start Vars

var showdate	= "no"		// SHOW THE DATE ON THE PAGE
var dateLR		= "left"	// DATE LEFT OR RIGHT
var dateX		= "10"		// DATE X LOCATION
var dateY		= "7"		// DATE Y LOCATION

// End Vars


// NOTE: If you use a ' add a slash before it like this \'

document.write('<TABLE cellpadding="0" cellspacing="0" border="0" WIDTH="100%"><tr><td align="right">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0"><tr><td>');
document.write('<img src="picts/spacer.gif" width="20" height="25"></a><br>');


// START LINKS //

document.write('</td><td nowrap>');
document.write('<a href="home.htm" class="menu">Home</a>');

document.write('</td><td nowrap>');
document.write('<a href="about.htm" class="menu">About Us</a>');

document.write('</td><td nowrap>');
document.write('<a href="services.htm" class="menu">Services</a>');

document.write('</td><td nowrap>');
document.write('<a href="quote.htm" class="menu">Quote</a>');

document.write('</td><td nowrap>');
document.write('<a href="portfolio.htm" class="menu">Portfolio</a>');

document.write('</td><td nowrap>');
document.write('<a href="clients.htm" class="menu">Clients</a>');

document.write('</td><td nowrap>');
document.write('<a href="testimonials.htm" class="menu">Testimonials</a>');

document.write('</td><td nowrap>');
document.write('<a href="contact.htm" class="menu">Contact</a>');

document.write('</td><td nowrap>');
document.write('<a href="links.htm" class="menu">Links</a>');



// END LINK BUTTONS //


document.write('</td><td WIDTH="1">');
document.write('<img src="picts/spacer.gif" width="1" height="25"></a><br>');
document.write('</td></tr></table>');
document.write('</td></tr></table>');



// 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("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(monthname[d.getMonth()] + ", " + d.getDate() + " ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}

// -- END -->

