<!-- Begin

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


var showphone		= "no"			// SHOW PHONE NUMBER IN MENU
var phonenumber		= "(888)-4-IKESTAR"	// YOUR PHONE NUMBER


var transparent		= "40"		// MENU TOP TRANSPARENCY
var NNtransparent	= "0.4"		// NETSCAPE TRANSPARENCY
var showimage 		= "no" 	// SHOW THE SMALL IMAGE ON THE MENU
var imaglink		= "gallery1.htm"	// 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		= "108"		// 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 : 150 px;-moz-opacity: '+NNtransparent+'; filter:alpha(opacity='+transparent+');">');
document.write('</DIV>');
<!-- document.write('img src="picts/menu-top-1.gif" width="150" height="78"></a>');
<!-- document.write('<img src="picts/menu-top-2.gif" width="168" height="52"></a>');


// START LINKS //
document.write('<br><br><br>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="gallery1.htm" class="menu">Family</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="gallery2.htm" class="menu">Friends & Romance</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="gallery3.htm" class="menu">Workplace</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="gallery4.htm" class="menu">Pet Owners</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="gallery5.htm" class="menu">Golf & Tennis</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="gallery6.htm" class="menu">Elected Officials</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="gallery7.htm" class="menu">Poker</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="gallery8.htm" class="menu">Holiday</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="index_of_penalty_pads.htm" class="menu">Index</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="about.htm" class="menu">About Us</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="policies.htm" class="menu">Policies</a>');

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

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="retailers.htm" class="menu">Retailers</a>');

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

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

//*document.write('</td></tr><tr><td nowrap>');
//*document.write('<a href="payments.htm" class="menu">Payments</a>');

document.write('</td></tr><tr><td>');


// MENU IMAGE

   if (showimage == "yes") {
document.write('<a href="'+imaglink+'"><img src="picts/sidebar-left.jpg" border="0"></a><br>');
}


// PHONE NUMBER

   if (showphone == "yes") {
document.write('<div id="phonenum">'+phonenumber+'</div><br>');
}



document.write('<img src="picts/spacer.gif" width="150" height="1"></a><br>');

document.write('</td></tr></table></DIV>');




// COPYRIGHT 2007 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// 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(d.getDate() + ". ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}

//  End -->