<!-- Begin MENU

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


var menuside	= "center"	// MENU SIDE | left, right or center
var menuspace	= "150"		// MENU END SPACING

// More secure right click prevention - START
var message="You may not right mouse click this page.";
if (navigator.appName == 'Microsoft Internet Explorer'){
function NOclickIE(e) {
if (event.button == 2 || event.button == 3) {
alert(message);
return false;
}
return true;
}
document.onmousedown=NOclickIE;
document.onmouseup=NOclickIE;
window.onmousedown=NOclickIE;
window.onmouseup=NOclickIE;
}
else {
function NOclickNN(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}}}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=NOclickNN; }
document.oncontextmenu=new Function("alert(message);return false")
}
// More secure right click prevention - END


document.write('<div class="printhide"><TABLE cellpadding="0" cellspacing="0" border="0" width="100%" class="menubackground"><tr><td align="'+menuside+'">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0"><tr><td width="'+menuspace+'">');
document.write('<img src="picts/spacer.gif" width="'+menuspace+'" height="1"></a><br>');



// COPY THE NEXT TWO LINES AND PASTE ABOVE THIS LINE TO ADD A BUTTON

document.write('</td><td>');
document.write('<a href="gallery.htm" class="menu">Gallery</a>');

document.write('</td><td>');
document.write('<a href="index.html" class="menu">Home</a>');

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

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

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

// document.write('</td><td>');
// document.write('<a href="custom.htm" class="menu">Custom</a>');

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

document.write('</td><td>');
document.write('<a href="site_map.htm" class="menu">Site Map</a>');

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

document.write('</td><td>');
document.write('<a href="faq.htm" class="menu">FAQs</a>');

// END LINKS



document.write('</td></tr></table>');
document.write('</td><td width="'+menuspace+'">');
document.write('<img src="picts/spacer.gif" width="'+menuspace+'" height="5"></a><br>');
document.write('</td></tr></table></div>');


//  End -->