/* VERSION = $Rev: 126 $ $Date: 2007-07-11 21:48:31 -0700 (Wed, 11 Jul 2007) $ */
{
// AddItem(id,text,hint,location,alternativeLocation,target);
// AddSubItem(idParent,text,hint,location);

	menu = new Menu(120,"center");
   // the fully qualified paths are used for the titles/items so the message board will 
   // work correctly.  this means we lost the use of relative paging for testing.
	menu.addTitle("homeid","Home","Home","http://www.drbeth.com/index.htm",null,false);
	menu.addTitle("aboutid","Why Dr. Beth","Dr. Beth","http://www.drbeth.com/whybeth.htm",null,false);

    //menu.addTitle("whatid","Dr. Beth's Intro","What is Compassionate Parenting","http://www.drbeth.com/Intro.htm",null,false);
    
    menu.addTitle("songsid","Dr. Beth's Music","The Music",null,null,false);
    menu.addItem("songsid","The Music","The Music","http://www.drbeth.com/music.htm",null);
    menu.addItem("songsid","Zero to Three","Zero to Three","http://www.drbeth.com/SongIntros.0-3.htm",null);
	menu.addItem("songsid","Three and Up","Three and Up","http://www.drbeth.com/SongIntros.3+.htm",null);
	
	menu.addTitle("servicesid","Services and Workshops","Teleconference,Day of Play,Parent Coaching,Parties,Live Performances",null,null,true);
    menu.addItem("servicesid","Affiliate Program","Affiliate Program","http://www.drbeth.com/affiliate.htm",null);
	menu.addItem("servicesid","90 Minute Workshop","90 minute Workshop","http://www.drbeth.com/workshop90min.htm",null);
	menu.addItem("servicesid","Full day Workshop","Full day Workshop","http://www.drbeth.com/workshopfullday.htm",null);
	menu.addItem("servicesid","Teleconference","Teleconference","http://www.drbeth.com/ParentTeenTele.htm",null);
	menu.addItem("servicesid","Day of Play","Day of Play","http://www.drbeth.com/services.htm#dop",null);
	menu.addItem("servicesid","Parent Coaching","Parent Coaching","http://www.drbeth.com/parentcoach.htm",null);
	menu.addItem("servicesid","Concerts","Concerts","http://www.drbeth.com/Band.htm",null);
    menu.addItem("servicesid","Assessment","Assessment","http://www.drbeth.com/saprofile.htm",null);
	menu.addItem("servicesid","Key Notes","Key Notes","http://www.drbeth.com/keynotes.htm",null);
    
    menu.addTitle("catalogid","Catalog","Catalog","http://www.drbeth.com/catalog.htm",null,false);
  		
	menu.addTitle("eventid","Media","Media and Events",null,null,false);
	menu.addItem("eventid","Radio Shows","Radio Shows","http://www.drbeth.com/radioshow.htm",null);
	menu.addItem("eventid","TV Appearances","TV Appearances","http://www.drbeth.com/ontv.htm",null);
	menu.addItem("eventid","Newspaper Articles","Newspaper Articles","http://www.drbeth.com/newspaper.htm",null);
    menu.addItem("eventid","Montclair Festival","Montclair Festival","http://www.drbeth.com/mfestival.htm",null);
	menu.addItem("eventid","San Francisco CD Release Party","San Francisco CD Release Party","http://www.drbeth.com/cdevent.htm",null);
	menu.addItem("eventid","Nashville CD Release Party","Nashville CD Release Party","http://www.drbeth.com/cdeventNash.htm",null);
	menu.addItem("eventid","Day of Play","Day of Play","http://www.drbeth.com/ddop.htm",null);
    menu.addItem("eventid","Press Releases","Press Releases","http://www.drbeth.com/release15june.htm",null);
	menu.addItem("eventid","Radio Appearances","Radio Appearances","http://www.drbeth.com/radio.htm",null);
	menu.addItem("eventid","Kid's Town","Kid's Town","http://www.drbeth.com/mvillage.htm",null);
	// menu.addItem("eventid","Upcoming Events","Parenting Workshops","http://www.drbeth.com/workshops.htm",null);

	menu.addTitle("resourceid","Resources","Resources",null,null,false);
	menu.addItem("resourceid","Past Newsletters","Past Newsletters","http://www.drbeth.com/e-newsletters/march_2006.html",null);
	menu.addItem("resourceid","Helpful Sites","Helpful Sites","http://www.drbeth.com/resources.htm",null);
	
	menu.addTitle("sponsorid","Sponsor","Sponsor","http://www.drbeth.com/sponsorship.htm",null,false);

	menu.addTitle("askid","Contact","Contact",null,null,false);
	menu.addItem("askid","Send a Message","Send a Message","http://www.drbeth.com/contact.htm",null);
	menu.addItem("askid","Ask Dr. Beth","Dr. Beth","http://www.drbeth.com/askbeth.htm",null);

	menu.showMenu();
}

function surpressError() 
{ 
    return false; 
}
//window.onerror=surpressError;


//showToolbar();

function UpdateIt()
{
if (document.all){
document.all["MainTable"].style.top = document.body.scrollTop;
setTimeout("UpdateIt()",200);}
}
UpdateIt();


