<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

var showdate	= "yes"		// SHOW DATE AT THE TOP
var menu_side	="RIGHT"	// MENU LEFT, RIGHT OR CENTER
var menuspace	= "0"		// MENU END SPACING


document.write('<TABLE cellpadding="0" cellspacing="0" border="0" WIDTH="100%" class="printhide"><tr><td align="'+menu_side+'" class="menutable">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0"><tr><td class="firstborder">');
document.write('<img src="spacer.gif" width="'+menuspace+'" height="22"></a><br>');


// START LINKS //


document.write('</td><td nowrap>');
document.write('<a target="_top" href="/brad" class="menu">BRAD INFO</a>');


document.write('</td><td nowrap>');
document.write('<a target="_top" href="/entertainment" class="menu">ENTERTAINMENT</a>');


document.write('</td><td nowrap>');
document.write('<a target="_top" href="/career" class="menu">CAREER</a>');


document.write('</td><td nowrap>');
document.write('<a target="_top" href="/health" class="menu">HEALTH</a>');


document.write('</td><td nowrap>');
document.write('<a target="_top" href="/money" class="menu">MONEY</a>');


document.write('</td><td nowrap>');
document.write('<a target="_top" href="/travel" class="menu">TRAVEL</a>');


// END LINK BUTTONS //

document.write('</td><td background="menu-background.jpg">');
document.write('<img src="/spacer.gif" width="'+menuspace+'" height="22"></a><br>');
document.write('</td></tr></table>');

document.write('</td></tr></table>');


// START DATE SCRIPT

   if (showdate == "yes") {
document.write('<div id="date-location">');
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("&nbsp;&nbsp;&nbsp;&nbsp;")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " - ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getDate() + ", ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');
}



//  End -->