<!-- Begin

var transparent = "40"		// MENU TOP TRANSPARENCY
var showimage = "yes" 		// SHOW THE SMALL IMAGE ON THE MENU
var imaglink = "contact.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 = "106"		// DATE Y LOCATION

document.write('<DIV id="menulocation">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0"><tr><td valign="top">');
document.write('<img src="images/img-menutop1.gif" width="150" height="16"></a><br>');
document.write('<img src="images/img-spacer.gif" width="150" height="78"></a><br>');
document.write('<img src="images/img-menutop2.gif" width="168" height="36"></a><br>');

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="rights.htm" class="menu">Your Rights</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="law.htm" class="menu">Areas of Law</a>');

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

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="press.htm" class="menu">In the Press</a>');

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

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

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

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

if (showimage == "yes") 
{
	document.write('<img src="images/img-menuscales.jpg" border="0"><br>');
}

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="javascript:moreInfo(\'encouragement.htm\',500,1)" class="menu"><span style="font-size: 7pt">Encouragement in the Faith</span></a>');

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

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

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 -->