<!-- Begin MENU LINKS AND OPTIONS
// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY


var showimage 	= "yes" 			// SHOW THE SMALL IMAGE ON THE MENU
var imaglink	= "cart.html"		// SMALL IMAGE PAGE LINK
var linkstop 	= "no" 			// START LINKS AT THE VERY TOP
var date 	= "no" 		// SHOW DATE



document.write('<DIV id="menulocation">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="125"><tr><td>');
   if (linkstop == "no") {
}
document.write('<img src="menu-top1.gif"><br>');

// START LINKS - EDIT BELOW TO CHANGE MENU ITEMS //

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="video.html" class="menu">Videography</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="photo.html" class="menu">Photography</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="limo.html" class="menu">Limosine</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="contact.html" class="menu">Contact Us</a>');

// COPY AND PASTE THE NEXT TWO LINES TOO ADD A NEW LINK


// START BOTTOM IMAGE AREA

document.write('</td></tr><tr><td>');

   if (showimage == "yes") {
document.write('<img src="menu-top1.gif"><br>');
document.write('</center>');
}
document.write('</td></tr></table></DIV>');


//  End -->