/*******************************************/
// Javascript for RootFour.com template
//
// Author:	Greg Browne
// Company:	Root Four Imagination Inc.
// Date:	May 2010
// Contact:	gbrowne@rootfour.com
/*******************************************/

function writeHeader()
{
	/*
	document.write("<a href='index.html'><img src='images/topmenu_home_up.gif' id='home' border='0' alt=' [Home] ' onmousedown='selectBut(this)' onmouseover='flipDn(this)' onmouseout='flipUp(this)' /></a><a href='fleetdriver.html'><img src='images/topmenu_fleet_up.gif' id='fleet' border='0' alt=' [Fleet Monitor] ' onmousedown='selectBut(this)' onmouseover='flipDn(this)' onmouseout='flipUp(this)' /></a><a href='safedriver.html'><img src='images/topmenu_teen_up.gif' id='teen' border='0' alt=' [Teen Monitor] ' onmousedown='selectBut(this)' onmouseover='flipDn(this)' onmouseout='flipUp(this)' /></a><a href='partners.html'><img src='images/topmenu_partners_up.gif' id='partners' border='0' alt=' [Where to Buy] ' onmousedown='selectBut(this)' onmouseover='flipDn(this)' onmouseout='flipUp(this)' /></a><a href='news.html'><img src='images/topmenu_news_up.gif' id='news' border='0' alt=' [News] ' onmousedown='selectBut(this)' onmouseover='flipDn(this)' onmouseout='flipUp(this)' /></a><a href='support.html'><img src='images/topmenu_contactus_up.gif' id='contactus' border='0' alt=' [Contact Us] ' onmousedown='selectBut(this)' onmouseover='flipDn(this)' onmouseout='flipUp(this)' /></a>");
	*/
}

function writeLeftCol()
{
}

function writeRightCol()
{
}

function writeFooter()
{
	document.write("<!-- BEGIN LivePerson Monitor. --><script language='javascript'> var lpMTagConfig = {'lpServer' : 'server.iad.liveperson.net','lpNumber' : '5774645','lpProtocol' : 'https'}; function lpAddMonitorTag(src){if(typeof(src)=='undefined'||typeof(src)=='object'){src=lpMTagConfig.lpMTagSrc?lpMTagConfig.lpMTagSrc:'/hcp/html/mTag.js';}if(src.indexOf('http')!=0){src=lpMTagConfig.lpProtocol+\"://\"+lpMTagConfig.lpServer+src+'?site='+lpMTagConfig.lpNumber;}else{if(src.indexOf('site=')<0){if(src.indexOf('?')<0)src=src+'?';else src=src+'&';src=src+'site='+lpMTagConfig.lpNumber;}};var s=document.createElement('script');s.setAttribute('type','text/javascript');s.setAttribute('charset','iso-8859-1');s.setAttribute('src',src);document.getElementsByTagName('head').item(0).appendChild(s);} if (window.attachEvent) window.attachEvent('onload',lpAddMonitorTag); else window.addEventListener('load',lpAddMonitorTag,false);</script><!-- END LivePerson Monitor. -->");
/*	var d = new Date();
	document.write("<div class='styleYellow'><a href='about.html'>Corporate Info</a><strong> | </strong><a href='about.html?t=3#Privacy'>Privacy Statement</a><strong> | </strong><a href='support.html?t=3#Return'>Return &amp; Refund Policy</a><strong> | </strong><a href='about.html?t=4#Legal'>Legal Notice</a><strong> | </strong><a href='support.html'>Contact Us</a></div><div class='styleGreen'>&copy; Root Four Imagination Inc. 2006-" + d.getFullYear() + "</div>");
	*/
}

function writeRetailers()
{
}

// selectBut() -	Shows menu button as pressed
function selectBut(myImg) {
	document.getElementById(myImg.id).src = "images/topmenu_" + myImg.id + "_sl.gif";
}

// flipDn() -	Show flipped menu button
function flipDn(myImg) {
	document.getElementById(myImg.id).src = "images/topmenu_" + myImg.id + "_dn.gif";
}

// flipUp() -	Show normal menu button
function flipUp(myImg) {	
	document.getElementById(myImg.id).src = "images/topmenu_" + myImg.id + "_up.gif";
}

