var Toolbar='<DIV ID="Toolbar" class="mToolbar" NOWRAP><a href="http://changeit.com"><img src="http://changeit.com/images/changeitlt.png" height="100px" width="320px" border="0"></a><table border=0><tr valign="bottom"><!-- ML0_ITEMS --></tr></table><div valign="bottom" id="tray" TRAYENABLE><!-- TRAY --></div><!-- MI1_ITEMS --></DIV>'; 
 
var lvArray=new Array(); 
var linx=0; 
var dispMenu=new Array(); 
var menx=0; 
var focusTimer=10;
 
// define Attribute Array Menu Levels 
function levelAtts (ty, cln, cls, cll) 
{	this.typ=ty; 
	this.clnorm=cln; 
	this.clselc=cls; 
	this.cllink=cll; 
	linx++; 
} <!-- TRAY -->
// 
// Track Menu Levels & Items currently displayed e
function menuDisp (id, it, ty, lv) 
{	this.id=id; 
	this.it=it; 
	this.ty=ty; 
	this.lv=lv; 
	menx++; 
} 
dispMenu[menx]=new menuDisp('x','x','x',0); 
menx--; 
 
function drawToolbar()  
{//	var newText = document.createTextNode(Toolbar); 
//	document.body.appendChild(newText); 
	document.write(Toolbar); 
} 
 
function addMenu( id, caption)  
{	var tmpTag='<!-- ML0_ITEMS -->'; 
	var id1='ML0_'+id; 
	var id2='ML1_'+id; 
	Toolbar=Toolbar.replace(tmpTag,'<td id="'+id1+'" class="' +lvArray[0].clnorm+ '" NOWRAP align="left"><p class="pItem" onmouseover="showSelect(0,\'' +'ML'+ '\',\'' +id+ '\',\'' +id1+ '\',\'' +' '+ '\');setFocus(5000);" onClick="showSelect(0,\'' +'ML'+ '\',\'' +id+ '\',\'' +id1+ '\',\'' +' '+ '\'); setFocus(10000);" onmouseout="setFocus(1000)">'+caption+'</p></td>'+tmpTag); 
	var tmpTag='<!-- MI1_ITEMS -->'; 
	Toolbar=Toolbar.replace(tmpTag,'<DIV id="' +id2+ '" class="' +lvArray[2].clnorm+ '" onmouseover="setFocus(10000)" onmouseout="setFocus(1000)" NOWRAP align="left"><!-- MI1_'+id+' --></div>'+tmpTag); 
} 
 
function addMenuItem(lv, p, id, caption, turl, hint)  
{	var tmpTag='<!-- MI' +lv+ '_'+p+' -->'; 
	var id1='MI' +lv+ '_' +id; 
	Toolbar=Toolbar.replace(tmpTag,'<DIV id="' +id1+ '" class="' +lvArray[lv*2+1].clnorm+ '" onmouseover="showSelect(' +lv+ ',\'' +'MI'+ '\',\'' +id+ '\',\'' +id1+ '\',\'' +hint+ '\');" onmouseup="location=root+\'' +turl+ '\'" NOWRAP align="left">'+caption+'</div>'+tmpTag); 
} 
 
function addSubMenu(lv, id, caption)  
{	var tmpTag='<!-- MI1_ITEMS -->'; 
	var id1='ML' +lv+ '_' +id; 
	var id2='MI' +lv+ '_' +id; 
	Toolbar=Toolbar.replace(tmpTag,'<DIV id="' +id1+ '" class="' +lvArray[lv*2].clnorm+ '" onmouseover="setFocus(10000)" onmouseout="setFocus(2000);" NOWRAP><!-- ' +id2+ ' --></div>'+tmpTag); 
	if (subCaps) 
	{	var tmpTag='<!-- ' +id2+ ' -->'; 
		Toolbar=Toolbar.replace(tmpTag,'<DIV id="' +id2+ '" class="' +lvArray[lv*2].clselc+ '" onmouseover="showSelect(' +lv+ ',\'' +'MI'+ '\',\'' +id+ '\',\'' +id2+ '\',\'' +' '+ '\');" NOWRAP>' +caption+ '</div>'+tmpTag); 
	} 
} 
 
function addTray(c)  
{	var tmpTag='<!-- TRAY -->'; 
	Toolbar=Toolbar.replace(tmpTag,c+tmpTag); 
	Toolbar=Toolbar.replace('TRAYENABLE','class="mTray"../'); 
}
 
function clockTick()
{	var currentTime = date(d, m, Y);
	var tmpTag='<!-- TRAY -->'; 
 	Toolbar= Toolbar.replace(tmpTag,""+currentTime);
 	Toolbar=Toolbar.replace('TRAYENABLE','class="mTray"../'); 
}

 function setFocus(tim)  
{	if (focusTimer) clearTimeout(focusTimer); 
	focusTimer=setTimeout('doHide(0)', tim); 
}

function doHide(lv)  
{	var match=0; 
	if (dispMenu[0].id=='x') return; 
	for (var i=0; i<menx; i++) 
	{	if ((dispMenu[i].ty=='ML') && (dispMenu[i].lv>lv)) 
		{	document.getElementById(dispMenu[i].id).style.display='none'; 
			match++; 
		} 
		if ((dispMenu[i].ty=='MI') && (dispMenu[i].lv>=lv)) 
		{	var o=document.getElementById(dispMenu[i].id); 
			if (o.className.substring(o.className.length-7, o.className.length)!='Caption') 
			{	o.className=lvArray[dispMenu[i].lv*2+1].cllink; 
				match++; 
			} 
		} 
	} 
	menx=menx-match; 
 
	if (lv==0)	 
	{	document.getElementById(dispMenu[0].id).className=lvArray[0].cllink; 
		dispMenu[0]=new menuDisp('x','x','x',0); 
		menx=0; 
		status=''; 
	} 
} 
 
function showSelect(lv, ty, it, id, hint)  
{	doHide(lv); 
	var o=document.getElementById(id); 
	x=o.offsetLeft+o.offsetParent.offsetLeft; 
	if  (ty=='ML') 
	{	o.className=lvArray[lv*2].clselc; 
	} else 
	{	if (o.className.substring(o.className.length-7, o.className.length)!='Caption')	o.className=lvArray[lv*2+1].clselc; 
	} 
	dispMenu[menx]=new menuDisp(id, it, ty, lv); 
	if (hint!='undefined') status=hint 
	else status=''; 
 
	var o=document.getElementById('Toolbar'); 
	y=o.offsetTop+o.offsetHeight-4; 
 
// check for SubMenu and display it 
	var o=document.getElementById('ML' +(lv+1)+ '_' +it); 
	if (o) 
	{	if (lv!=0) 
		{	var idd='MI' +lv+ '_' +it 
		y=document.getElementById(idd).offsetTop+document.getElementById(idd).offsetParent.offsetTop; 
		x=document.getElementById(idd).offsetLeft+document.getElementById(idd).offsetParent.offsetLeft+document.getElementById(idd).offsetParent.offsetWidth-5; 
			o.style.top=y; 
		} 
		o.style.left=x; 
		o.style.display='block';	 
		dispMenu[menx]=new menuDisp(o.id, it, 'ML', lv+1); 
	} 
} 
 
//------ set all configurables here ------------------------------------ 
var root=''; 
 
//------ set subCaps to true if you need Captions on the sub menus 
var subCaps=false;	 
 
//------ set normal, selected, linked css items  
//------ to be used for menus(ML) and Items(MI) 
//------ ML selected is used for subCaption CSS 
lvArray[linx]=new levelAtts('ML0', 'mItem', 'mItemSelect', 'mItemLink'); 
lvArray[linx]=new levelAtts('MI0', 'mItem', 'mItemSelect', 'mItem'); 
lvArray[linx]=new levelAtts('ML1', 'mSub1Menu', 'mSub1MenuCaption', 'n/a'); 
lvArray[linx]=new levelAtts('MI1', 'mSub1Item', 'mSub1ItemSelect', 'mSub1ItemLink'); 
lvArray[linx]=new levelAtts('ML2', 'mSub2Menu', 'mSub2MenuCaption', 'n/a'); 
lvArray[linx]=new levelAtts('MI2', 'mSub2Item', 'mSub2ItemSelect', 'mSub2ItemLink'); 
lvArray[linx]=new levelAtts('ML3', 'mSub1Menu', 'mSub1MenuCaption', 'n/a'); 
lvArray[linx]=new levelAtts('MI3', 'mSub1Item', 'mSub1ItemSelect', 'mSub1ItemLink'); 
lvArray[linx]=new levelAtts('ML4', 'mSub2Menu', 'mSub2MenuCaption', 'n/a'); 
lvArray[linx]=new levelAtts('MI4', 'mSub2Item', 'mSub2ItemSelect', 'mSub2ItemLink'); 
lvArray[linx]=new levelAtts('ML5', 'mSub1Menu', 'mSub1MenuCaption', 'n/a'); 
lvArray[linx]=new levelAtts('MI5', 'mSub1Item', 'mSub1ItemSelect', 'mSub1ItemLink'); 
lvArray[linx]=new levelAtts('ML6', 'mSub2Menu', 'mSub2MenuCaption', 'n/a'); 
lvArray[linx]=new levelAtts('MI6', 'mSub2Item', 'mSub2ItemSelect', 'mSub2ItemLink'); 
lvArray[linx]=new levelAtts('ML7', 'mSub1Menu', 'mSub1MenuCaption', 'n/a'); 
lvArray[linx]=new levelAtts('MI7', 'mSub1Item', 'mSub1ItemSelect', 'mSub1ItemLink'); 

//------ set menu structure here 
//------ addMenu( identifier, menuTitle) 
//------ addSubMenu ( level, identifier, caption) 
//------ addMenuItem( level, parent, identifier, itemTitle, page, statusLineHint) 

//Logo
//addMenu(' ','<a href="http://www.changeit.com/index.php"><img src="http://changeit.com/images/ChangeItStar1.jpg" width="480px" border="0"></a>')
//LINK - HOLE **********************************************************
//addMenu('changeit_floors','<object width="50" height="40"> <param name="movie" value="./images/box.swf"> <param name="wmode" value="transparent"> <param name="quality" value="high"> <embed src="./ming/box.swf" quality="high" width="50" height="40"></embed> </object><a class="topmenu" href="http://www.changeit.com" name="About"> ChangeIt Floors</a>')

addMenu(' ','&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;')
//addMenu('changeit_floors','<a class="topmenu" href="http://www.changeit.com" name="About"> ChangeIt Floors</a>')
addMenu('services','<a class="topmenu" href="http://www.changeit.com/index.php" name="account"> Flooring Services </a>')
addMenu('links','<a class="topmenu" href="http://www.changeit.com" name="Links"> Favorite Links </a>')
addMenu('Resume','<a class="topmenu" href="http://www.changeit.com/?display=./family/chris/documents/cyeager_resume.html" name="resume"> Chris\'s Resume </a>')

addMenuItem(1,'Resume','DLResumepdf','Download PDF Resume','http://www.changeit.com/cyeager_resume.pdf','Download PDF Resume')
addMenuItem(1,'Resume','DLResumedoc','Download MS Word Resume','http://www.changeit.com/cyeager_resume.doc','Download MS Word Resume')

//addMenu('admin','<div align="right"><a class="topmenu" href="http://www.changeit.com" name="admin">Administration </a></div>')



//Services ------------------------------------------------------------------------------------------------------------
addMenuItem(1,'services','Mngbilling','Proposals & Invoice Management','http://www.changeit.com/?display=./FLOORING/Customer.htm','Proposals & Invoice Management')
addMenuItem(1,'services','price1','Installation Prices (Labor Only)','http://www.changeit.com/?display=./FLOORING/Prices.html','Carpet Prices')
addMenuItem(1,'services','availability','Availability Calendar','http://www.changeit.com/entry.php?display=192','Availability Calendar')
//addMenuItem(1,'services','price2','&nbsp&nbsp&nbsp; Hardwood Prices &nbsp&nbsp&nbsp','http://www.changeit.com/','Hardwood Prices')
//Admin ------------------------------------------------------------------------------------------------------------
addMenuItem(1,'admin','addnews','&nbsp&nbsp&nbsp; Add News &nbsp&nbsp&nbsp','http://www.changeit.com/addnews.php','Add News')
addMenuItem(1,'admin','editnews','&nbsp&nbsp&nbsp; Edit News &nbsp&nbsp&nbsp','http://www.changeit.com/editnews.php','Edit News')




//Earth Pictures
//addMenuItem(1,'home','About','&nbsp&nbsp&nbsp About ChangeIt (Soon) &nbsp&nbsp&nbsp','','Page')
addMenuItem(1,'home','Mission','&nbsp&nbsp&nbsp The World View Of Western / N.America &nbsp&nbsp&nbsp','http://www.changeit.com/?register','Planet Page')
addMenuItem(1,'home','Mission2','&nbsp&nbsp&nbsp Return To Main Page &nbsp&nbsp&nbsp','http://www.changeit.com','Main Page')



//Admin-----------------------------------------------
//addMenuItem(1,'changeit1','emacct','&nbsp&nbsp&nbsp; Add News &nbsp&nbsp&nbsp','http://www.changeit.com/addnews.php','Add News')
//addMenuItem(1,'changeit1','emacct1','&nbsp&nbsp&nbsp; Edit News &nbsp&nbsp&nbsp','http://www.changeit.com/editnews.php','Edit News')



// Favorite LINKS +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

 addMenuItem(1,'links','gallery','<a class="topmenu" href=\"http://www.changeit.com/gallery2/\" name="Gallery"> Picture Gallery -> </a>','http://www.changeit.com/gallery2/','Picture Gallery') 
 addMenuItem(1,'links','edu','Educational Sites ->','','Educational Links') 
 addMenuItem(1,'links','floor','Floor Covering Sites ->','','Floor Covering Companies') 
 addMenuItem(1,'links','health','Health & Foods ->','','Health Ideas')   
 addMenuItem(1,'links','housing','Trulia Real Estate Information','http://www.trulia.com/home_prices/','Housing Prices') 
 addMenuItem(1,'links','hobbies','Hobbies ->','','Hobbies') 
 addMenuItem(1,'links','techsites','Internet Techie Sites ->','','Internet Techie Sites')  
 addMenuItem(1,'links','news','News Links ->','','Political Common Sense?')
addMenuItem(1,'links','maps','MapQuest.com','http://www.mapquest.com','MapQuest.com')
 addMenuItem(1,'links','stocks','Stock Market Links ->','','Political Common Sense?')
 addMenuItem(1,'links','search','Search Engines ->','','Search Engines')   
 addMenuItem(1,'links','leo','Sacramento Service Information ->','','Sacramento Services') 
 addMenuItem(1,'links','weather','<x href="http://www.nws.noaa.gov"> National Weather Service -></x>','http://www.nws.noaa.gov','National Weather Service') 	
 
addSubMenu(2,'floor','Floor Covering Companies')
	addMenuItem(2,'floor','Armstrong','Armstrong Flooring','http://www.armstrong.com','Armstrong Flooring') 
	addMenuItem(2,'floor','NWFA','National Wood Flooring Association','http://www.woodfloors.org/','National Wood Flooring Association') 
	addMenuItem(2,'floor','FCI','Floor Covering Installer','http://www.fcimag.com/','Floor Covering Installer')
	addMenuItem(2,'floor','Mannington','Mannington Flooring','http://www.mannington.com','Mannington Flooring')
	addMenuItem(2,'floor','Medalion','Medallion Flooring Distribution','http://medallion1.com/medallion_3.htm','Medallion Flooring')

//The ChangeIt Gallery+++++++++++++++++++++++++++++++++++++++++++++++++++++++
//Picture Gallery
addSubMenu(2,'gallery','Picture Gallery')
addMenuItem(2,'gallery','emacct','Family Picture','http://www.changeit.com/gallery2/v/Yeager+Family+Albums/washington+trip/August12MtStHelens/more+Mt_+St_+Helens+003.JPG.html','Family Picture')
addMenuItem(2,'gallery','emacct1','Sacramento Tea Party','http://www.changeit.com/gallery2/v/tea_party_09/IMG_0881.JPG.html?g2_imageViewsIndex=0','Tea Party')

addSubMenu(3,'family11','My Pages')		
addMenuItem(3,'family11','chris','<x href="http://www.changeit.com/?display=./family/chris/documents/cyeagerbk.html" name="Home">Chris\'s</x>','http://www.changeit.com/?display=./family/chris/documents/cyeagerbk.html','Resume')
//  addMenuItem(2,'family11','mom','Samantha\'s \(Unavailable\)','','Resume')
 addMenuItem(3,'family11','nick','Nick\'s','http://www.changeit.com/?display=./family/nick/index.html','Resume')
 addMenuItem(3,'family11','kristina','Kristina\'s','http://www.changeit.com/family/kristina/index.html','')
 addMenuItem(3,'family11','tammie','Tammie\'s','http://www.changeit.com/?display=./family/tammie/index.html','')




//DAD's Pages ------------------------------------		
addSubMenu(4,'chris','Chris')		
addMenuItem(4,'chris','resume1',' Resum`e','http://www.changeit.com/?display=./family/chris/documents/cyeagerbk.html','Resume')

//Kristina's------------------------------------------
addSubMenu(4,'kristina','Kristina\'s Links')
	addMenuItem(4,'kristina','frog1','Frog Nirvana','http://www.frognirvana.com','Frog Nirvana')








//NEWS Start-------------------------------------------------------------------------------------

//News Links
  addSubMenu(2,'news','Political News')
    addMenuItem(2,'news','right','Conservative News ->','http://www.changeit.com/index.php','Conservative Media Links')
    addMenuItem(2,'news','unbiased','Unbiased News ->','http://www.changeit.com/index.php','Unbiased Media Links')
    addMenuItem(2,'news','left','Liberal News ->','http://www.changeit.com/index.php','Liberal Media Links')
    addMenuItem(2,'news','idiot','Odd Ball News ->','http://www.changeit.com/index.php','Odiferious News')
    addMenuItem(2,'news','paper','Local News ->','http://www.changeit.com/index.php','Newspaper Media Links')
    addMenuItem(2,'news','tsg','The Smokeing Gun',' http://www.thesmokinggun.com/','The Smokeing Gun')

  addSubMenu(3,'right','Conservative News')
    addMenuItem(3,'right','aim','A\.I\.M\.','http://www.aim.org','Accuracy In Media')
    addMenuItem(3,'right','conservative','Conservative.org','http://www.conservative.org','Conservative.org')
    addMenuItem(3,'right','drudge','Drudge Report','http://www.drudgereport.com','The Drudge Report')
    addMenuItem(3,'right','foxnews','Fox News','http://www.foxnews.com','Fox News')
    addMenuItem(3,'right','Free','Free Republic','http://freerepublic.com/','Free Republic')
    addMenuItem(3,'right','newsmax','NewsMax','http://www.newsmax.com','NewsMax')
    addMenuItem(3,'right','rush','Rush Limbaugh','http://www.rushlimbaugh.com','Rush Limbaugh')
    addMenuItem(3,'right','town','Townhall.com','http://www.townhall.com/','townhall.com')

//Left New
   addSubMenu(3,'left','Liberal News')
     addMenuItem(3,'left','APA','American Progress Action','http://www.americanprogressaction.org','APA')
     addMenuItem(3,'left','CNN','CNN News','http://www.cnn.com/','CNN News')     
     addMenuItem(3,'left','NBC','MSNBC News','http://www.msnbc.msn.com','CBS News')
     addMenuItem(3,'left','washp','Washington Post','http://www.washingtonpost.com','Washington Post')
     
//UnBiased News 
   addSubMenu(3,'unbiased','Liberal News')
     addMenuItem(3,'unbiased','CBS','CBS News','http://www.cbsnews.com','CBS News')
     addMenuItem(3,'unbiased','MyWay','MyWay News','http://news.myway.com/index.html','MyWay News')
     addMenuItem(3,'unbiased','Reuters','Rueters News','http://today.reuters.com/','Reuters News')
     addMenuItem(3,'unbiased','UPI','United Press International','http://www.upi.com/','UPI News')
     addMenuItem(3,'unbiased','AP','Associated Press International','http://www.ap.org','Associated Press International')

//Odiferious News
   addSubMenu(3,'idiot','Odiferious News')
    addMenuItem(3,'idiot','MickyMoore','Micheal Moore','http://www.michaelmoore.com/mustread/','Micheal Moores Poop')
    addMenuItem(3,'idiot','Barfra','Barbra Streisand','http://www.barbrastreisand.com/index.php?page=statements','Ooops I did it again')

//Newspapers News
   addSubMenu(3,'paper','Local News')
     addMenuItem(3,'paper','sacbee','Sacramento Bee','http://www.sacbee.com','The Liberal Sacramento Bee')
     addMenuItem(3,'paper','sacunion','Sacramento Union','http://www.sacunion.com','The Conservative Sacramento Union')
     addMenuItem(3,'paper','KFBK','KFBK Radio','http://www.kfbk.com/main.html','KFBK Radio')
     addMenuItem(3,'paper','burn','Sacramento Air Quality News','http://www.sparetheair.com/burncheck.cfm','Sacramento Air Quality News')

// NEWS End*****************************************************************************

//Stock Market Links 
   addSubMenu(2,'stocks','Stock Market Links')
    addMenuItem(2,'stocks','nasdaq','NASDAQ','http://www.nasdaq.com','NASDAQ')
	addMenuItem(2,'stocks','nyse','NYSE','http://www.nyse.com','NYSE')
	addMenuItem(2,'stocks','stockcharts','StockCharts','http://stockcharts.com/','Stock Charts')
	addMenuItem(2,'stocks','nasdaq','CNN Money','http://money.cnn.com/data/markets/dow/','Dow Jones Industrial Averages')


//Security Links
   addSubMenu(2,'techsites','Computer Information Links')
     addMenuItem(2,'techsites','security','System Security Information ->','','Security Information Links')
     addMenuItem(2,'techsites','plang','Programming ->','','Programming')
     addMenuItem(2,'techsites','image','Image Manipulation ->','','Image Manipulation')
     addMenuItem(2,'techsites','mlang','Mail Filters ->','','Programming')

	addSubMenu(3,'security','Security')
	addMenuItem(3,'security','Sans','SANS.ORG','http://www.sans.org','System Security Information')
		addMenuItem(3,'security','incidents','INCIDENTS.ORG','http://www.incidents.org','Internet Malicious Information')
		addMenuItem(3,'security','Snorts','SNORT.ORG','http://www.snort.org','System Security Information')
		addMenuItem(3,'security','so','Security Focus','http://online.securityfocus.com/','Security Focus')

	



/*Programming Stuff */
     addSubMenu(3,'plang','Programming')
            addMenuItem(3,'plang','perl','PERL.ORG','http://www.perl.org','Perl Information')
	    addMenuItem(3,'plang','php','PHP.NET','http://www.php.net','PHP Information')
               
/*      PHP SITES         */
               addSubMenu(4,'php','PHP Sites')
               	    addMenuItem(4,'php','freaks','PHPFreaks','http://www.phpfreaks.com/','PHPFreaks')
                                        
/*	Perl Sites */                                        
               addSubMenu(4,'perl','Perl Sites')
               	    addMenuItem(4,'perl','monks','Perl Monks','http://www.perlmonks.org/','Perl Monks')
                                        
                                        
     addSubMenu(3,'image','Image Manipulation')
            addMenuItem(3,'image','gimp','GIMP.ORG','http://www.gimp.org/','Gimp Power')
	    addMenuItem(3,'image','gimp2','InfoM4 Miles\'s Page','http://www.rru.com/~meo/gimp/','Gimp Power')

     
     addSubMenu(3,'mlang','Mail Filters')
            addMenuItem(3,'mlang','spamassin','SpamAssasin','http://spamassassin.apache.org/downloads.cgi','Mail Filters')
	    addMenuItem(3,'mlang','mimedefng','MimeDefang','http://www.mimedefang.org','MimeDefang Filters')

//EDUCATION
  addSubMenu(2,'edu','Educational Links')
	addMenuItem(2,'edu','college','College Funding ->','','College Funding')
	addMenuItem(2,'edu','general','General Educational Sites ->','','General Educational Sites')
	addMenuItem(2,'edu','english1','English ->','','English')
	addMenuItem(2,'edu','history1','History ->','','History')
	addMenuItem(2,'edu','math1','Mathmatics ->','','Mathmatics')
	addMenuItem(2,'edu','science','Science ->','','Science')
	addMenuItem(2,'edu','arts','Creative Arts ->','','Creative Arts')

/*College Funding Information */ 	
	addSubMenu(3,'college','College Tuition Information')
		addMenuItem(3,'college','InnovativeCF','Innovative College Funding','http://www.InnovativeCollegeFunding.com','Innovative College Funding')  	

/*General Educational Sites */		
	addSubMenu(3,'general','General Educational Sites')
		addMenuItem(3,'general','edsite','EdSitement\.com \(Requires Registration Fee\) ','http://edsitement.neh.gov/','EdSitement\.com')
		addMenuItem(3,'general','edhelper','EdHelper\.com \(Requires Registration Fee\) ','http://www.edhelper.com/','EdHelper\.com/')
		addMenuItem(3,'general','brainpop','BrainPop\.com \(Requires Registration Fee\) ','http://www.brainpop.com','BrainPop\.com/')
/*English Educational Sites*/		
	addSubMenu(3,'english1','English Educational Sites')
		addMenuItem(3,'english1','wordsmyth','WordSmyth\.com','http://www.wordsmyth.net/live/home.php','WordSmyth\.com')  
/*Mathmatical Educational Sites*/				
	addSubMenu(3,'math1','Mathmatical Educational Sites')
		addMenuItem(3,'math1','math2','The World Of Math Online','http://www.math.com','The World Of Math Online')
		addMenuItem(3,'math1','rice','Rice Mathematical Games','http://math.rice.edu/~lanius/Lessons/index.html','Rice Mathematical Games')
		addMenuItem(3,'math1','SOS','SOS Mathematics','http://www.sosmath.com','SOS Mathematics Games')		
addSubMenu(3,'history1','History')
		addMenuItem(3,'history1','historg','TeachingAmericanHistory\.com <br> Learn more about American history','http://www.teachingamericanhistory.org','TeachingAmericanHistory\.com <br> Learn more about American history')  	

/*SCIENCE Educational Sites */
	addSubMenu(3,'science','California Information')
		addMenuItem(3,'science','soho',' SOHO (Solar & Heliospheric Observatory)','http://sohowww.nascom.nasa.gov/','SOHO (Solar & Heliospheric Observatory)')
		addMenuItem(3,'science','Space','Space Exploration','http://www.space.com','Space Exploration')
		addMenuItem(3,'science','Live',' Live Science','http://www.livescience.com','Live Science Repository of New Discoveries')
		addMenuItem(3,'science','NEO','NASA Near Earth Object Program','http://neo.jpl.nasa.gov/index.html','NASA Near Earth Object Program')
		addMenuItem(3,'science','Guiness','Guiness World Records','http://www.guinnessworldrecords.com/','World Record Database')
		addMenuItem(3,'science','Rocks','Mineralogy Database','http://webmineral.com','Mineralogy Database')
		addMenuItem(3,'science','Sun','Space Weather','http://www.spaceweather.com/','Space Weather')
		addMenuItem(3,'science','Sun','Exploratorium','http://www.exploratorium.edu/','Exploreatorium')
                addMenuItem(3,'science','ocean','Physical Oceanography DAAC (JPL)','http://podaac.jpl.nasa.gov/index.html','Physical Oceanography DAAC (JPL)')

/*Arts Educational Sites */		
		addSubMenu(3,'arts','Arts')
		addMenuItem(3,'arts','music','MusicCoach\.com <br> Piano & Guitar (Requires Application Fee)','http://www.musiccoach.com/index.htm','MusicCoach\.com <br> Piano & Guitar \(Requires Application Fee\)')  	
		
		

	
// Sacramento LEO*********************************

  addSubMenu(2,'leo','Sacramento County Service Information Enforcement')
	addMenuItem(2,'leo','city','Sacramento City Law Enforcement','http://www.sacpd.org','Sacramento City Law Enforcement')
	addMenuItem(2,'leo','county','Sacramento County Law Enforcement','http://www.sacsheriff.com/contact/index.cfm','Sacramento County Law Enforcement')
	addMenuItem(2,'leo','dmv','DMV Vehicle Publications','http://www.dmv.ca.gov/pubs/pubs.htm','DMV Vehicle Publications')
        addMenuItem(2,'leo','burn','Sacramento Air Quality News','http://www.sparetheair.com/burncheck.cfm','Sacramento Air Quality News')
	addMenuItem(2,'leo','gasprice','Sacramento gas prices News','http://www.gasbuddy.com/gb_gastemperaturemap.aspx?z=10&lat=38.611198&long=-121.406113&ft=A&tl=48','Sacramento gas prices')

//HEALTH******************************************

    addSubMenu(2,'health','Health')
	addMenuItem(2,'health','foods','Recipe Links ->','','Recipes \& Natural Foods')
	addMenuItem(2,'health','heal','Health Information ->','','Health InFormation')
//	addMenuItem(2,'health','rest','Interesting Restaraunts','','Interesting Restaraunts')
//Health Information******************************

 addSubMenu(3,'heal','Health Information') 
	addMenuItem(3,'heal','elliots','Elliot\'s Health Foods','http://www.elliottsnaturalfoods.com','Elliot\'s Health Foods')
	addMenuItem(3,'heal','drlam','Dr Lam\'s Alternative Medicine','http://lammd.com','Dr Lam\'s Alternative Medicine')
	addMenuItem(3,'heal','orange','The Orange Book Information','http://www.edsorangebook.com/click_me_first.htm','Orangebook Information')
	addMenuItem(3,'heal','specific','Health Concerns','','Specific Health Information')
	addMenuItem(3,'heal','organic','Organic Facts','http://www.organicfacts.net/','Organic Facts')	




//addSubMenu(3,'rest','Interesting Restaraunts') 
//	addMenuItem(3,'rest','casadice','CasaDice Cusine','http://www.casadice.com','CasaDice Cusine')
	
//Specific Health
 addSubMenu(4,'specific','Specific Information') 
	addMenuItem(4,'specific','diabetes','Diabetes','','Diabetes Patients Information')	
	addMenuItem(4,'specific','cfh','Heart','','Cardio Heart Failure Information')
	addMenuItem(4,'specific','kidney','Kidneys','','Kidney Patients Information')

	 addSubMenu(5,'cfh','Cardio Heart Failure Information') 	
// 	 	addMenuItem(5,'heal','aakp','American Association Of Kidney Patients 		Information','http://www.aakp.com','American Association Of Kidney Patients Information')
	
	 addSubMenu(5,'diabetes','Diabetes Information') 	
// 	 	addMenuItem(5,'heal','aakp','American Association Of Kidney Patients 		Information','http://www.aakp.com','American Association Of Kidney Patients Information')
	 
	 addSubMenu(5,'kidney','kidney Information') 	
		addMenuItem(5,'kidney','aakp','American Association Of Kidney Patients Information','http://www.aakp.org','American Association Of Kidney Patients Information')
		addMenuItem(5,'kidney','divita','Davita - Dialysis and Kidney Disease Information','http://www.davita.com','Dialysis and Kidney Disease Information')

//Recipe Links*************************************
 addSubMenu(3,'foods','RecipeSites')
       	addMenuItem(3,'foods','allrecipe','AllRecipes.com Recipes','http://www.allrecipes.com/','AllRecipes.com Recipes')            
	addMenuItem(3,'foods','breadnet','Bread Net Recipes','http://www.breadnet.net/','Bread Net Recipes')
	addMenuItem(3,'foods','cooks','Cooks\.com Recipes','http://www.cooks.com/','Cooks\.com Recipes')
	addMenuItem(3,'foods','Pizza','PizzaMakeing.com Important Information!','http://www.pizzamaking.com/ ','PizzaMaking.com Recipes')            	
	addMenuItem(3,'foods','Recipezaar','RecipeZaar Recipes','http://www.recipezaar.com/','RecipeZaar.com Recipes')
	




//Hobbies Information******************************
    addSubMenu(2,'hobbies','Hobbies')
	addMenuItem(2,'hobbies','fishing','Fishin Hole ->','','California Fishin')   
	addMenuItem(2,'hobbies','artifact','Metal Detecting ->','','Collectible')
	//addMenuItem(2,'hobbies','scrap','Scrap Booking','','Scrap Booking')
	
	addSubMenu(3,'artifact','Collectible Treasures')
		addMenuItem(3,'artifact','collectable','Collectible Treasures','http://www.collectible-treasures.com/','Collectible Treasures')
		addMenuItem(3,'artifact','coinfacts','Coin Facts','http://www.coinfacts.com/','Coin Facts')
		addMenuItem(3,'artifact','sachist','Sacramento & Local Historical Maps','http://bard.wr.usgs.gov/historical/subindex/hist-sacramento.html#FAIR%20OAKS','Sacramento & Local Historical Maps')
		addMenuItem(3,'artifact','calmd','California Metal Detecting Forum','http://forums.kinzlicoils.com/index.php','California Metal Detecting Forum')
		addMenuItem(3,'artifact','mycc','My Coin Collecting Coin Info','http://www.mycoincollecting.com/coin_catalog.html','My Coin Collecting Coin Info')
		addMenuItem(3,'artifact','treshnt','Treasure Net Forum','http://forum.treasurenet.com/index.php','Treasure Net Forum')
		addMenuItem(3,'artifact','treshnt','Online Encyclopedia of Silver Marks, Hallmarks & Makers\' Marks','http://www.925-1000.com/index.html','Online Encyclopedia of Silver Marks, Hallmarks & Makers\' Marks')


//addSubMenu(3,'scrap','Scrap Booking')


//FISHING*****************************************

addSubMenu(3,'fishing','California Local Fishing Links')
      	addMenuItem(3,'fishing','FishSniffer','Fish Sniffer','http://www.fishsniffer.com/','Fish Sniffer')
     	addMenuItem(3,'fishing','cfsc','Coast Side Fishing Club','http://www.coastsidefishingclub.com/','Coast Side Fishing Club')

      	addMenuItem(3,'fishing','USAFishing','USA Fishing','http://www.usafishing.com','USA Fishing')
      	addMenuItem(3,'fishing','rivercfs','California River Conditions','http://cdec.water.ca.gov/river/rivcond.html','River Flows')
      	addMenuItem(3,'fishing','Richey','J.D. Richey','http://www.thesportfisher.com/biting.html','J.D. Richey')
	addMenuItem(3,'fishing','San_Fransico','San Fransico Fishing Report','http://www.sfgate.com/sports/outdoors/fishing/','San Fransico Fishing Report')
	addMenuItem(3,'fishing','San_Fransico_Weather','San Fransico Weather','','San Fransico Weather')
	addMenuItem(3,'fishing','SaltwaterTides','SaltWater Tides','http://www.saltwatertides.com/dynamic.dir/californiasites.html','SaltWater Tides')
	
addSubMenu(4,'San_Fransico_Weather','San Francisco Weather')
      	addMenuItem(4,'San_Fransico_Weather','WeatherSF','Weather Report','http://www.ndbc.noaa.gov/data/Forecasts/FZUS56.KMTR.html','San Francisco Weather')
      	addMenuItem(4,'San_Fransico_Weather','WeatherHMB','HALF MOON BAY - 24NM South Southwest of San Francisco, CA','http://www.ndbc.noaa.gov/data/Forecasts/FZUS56.KMTR.html','HALF MOON BAY - 24NM South Southwest of San Francisco, CA')
      	addMenuItem(4,'San_Fransico_Weather','WeatherBB','Bodega Bay - 48NM North Northwest of San Francisco, CA','http://www.ndbc.noaa.gov/station_page.php?station=46013','Bodega Bay - 48NM North Northwest of San Francisco, CA')

//SEARCH ENGINES********************************http://www.wolframalpha.com/
     addSubMenu(2,'search','Search Engines')
      	addMenuItem(2,'search','altavista','Altavista ','http://www.altavista.com','Altavista Search Engine') 
	addMenuItem(2,'search','askjeeves','Ask Jeeves','http://askjeeves.com/','Ask Jeeves Search Engine')       	
	addMenuItem(2,'search','Google','Google','http://google.com/','Google Search Engine') 
	addMenuItem(2,'search','yahoo','YaHoo','http://search.yahoo.com/','Yahoo Search Engine') 
      	addMenuItem(2,'search','wolframalpha','WolframAlpha World knowledge','http://www.wolframalpha.com/','Making the worlds knowledge computable')
      	

//WEATHER********************************
	addSubMenu(2,'weather','Weather Information')
		addMenuItem(2,'weather','Sacweather','Sacramento Weather','http://forecast.weather.gov/MapClick.php?lat=38.6208941112908&lon=-121.40922546386719&site=sto&smap=1&marine=0&unit=0&lg=en','Sacramento Weather Information')
		addMenuItem(2,'weather','Tucweather','Tucson Weather','http://www.wrh.noaa.gov/forecast/MapClick.php?site=twc&textField1=32.19580&textField2=-110.89170&smap=1','Tucson Weather Information') 		


// End Favorite Links
//=======================================================================================
//addTray('<a href="http://www.changeit.com/?display=./FLOORING/editinv.htm">Administration</a>')
addTray('<a href="http://www.changeit.com/webmail"><img src="./images/emailold.gif" border="0"></a>')


