function init()
{
	var ie4 = false, ie5_mac = false, ie55 = false;
	var nn4 = false, dom = false;	
	var agent = navigator.userAgent.toLowerCase();

	if (document.all)
	{
		var version = parseFloat(agent.substr(agent.indexOf("msie")+5, 3));
		if (agent.indexOf("mac") != -1 && version >= 5)
			ie5_mac = true;
		else
		{
			if (version >= 5.5) {
				ie55 = true;
			}
			else if (version >= 4)
				ie4 = true;
		}
	}
	//else if (document.layers)
	else if (navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 4 && parseInt(navigator.appVersion) < 5)
		nn4 = true;
	else if (document.getElementById) {
		dom = true;
	}

	if ( ie5_mac || ie55 || ie4 )
	{
	    obj = document.getElementById('bodyContents');
	    obj.style.left = "0px";
	    obj.style.top = "0px";
		
	    obj = document.getElementById('menuBottom');
	    obj.style.left = "2px";
	    obj.style.top = "310px";
		
	}
      else if ( nn4 )
	{
	    document.bodyContents.moveTo(0, 0);
		document.menuBottom.moveTo(2, 310);
	}
      else if ( dom )
      {
	    obj = document.getElementById('bodyContents');
	    obj.style.left = "0px";
	    obj.style.top = "0px";
		
	    obj = document.getElementById('menuBottom');
	    obj.style.left = "2px";
	    obj.style.top = "310px";
		

 	  }

	if( ie5_mac || ie55 || ie4  || dom )
    	{
  	    	obj = document.getElementById('bodyContents');
    	    obj.style.visibility = "visible";
			
  	    	obj = document.getElementById('menuBottom');
    	    obj.style.visibility = "visible";

		} 
    	else if ( nn4 )
    	{
      		document.bodyContents.visibility = "visible";
     		document.menuBottom.visibility = "visible";
     	}

	menus[0] = new menu(204, "vertical", 2, 300, -5, 5, "#FFFFFF", "#3980F4", "Verdana, Helvetica, Arial", 8, 
		"", "", "black", "white", 1, "#A5A5A5", 1, "rollover:menu-arrow.gif:menu-arrow-ovr.gif", false, true, true, false, 0, false, 1, 1, "black");
	menus[0].addItem("http://www.bluedanubeviolins.com/bdp/index.htm", "", 30, "left", "Blue Danube Musik Impresario", 1);


//Sub Menu for 7th Main Menu Item ("Blue Danube Productions"):
	menus[1] = 	new menu(170, "vertical", 0, 0, -1, -1, "#FFFFFF", "#3980F4", "Verdana, Helvetica, Arial", 8, 
		"", "", "black", "white", 1, "#A5A5A5", 1, "rollover:menu-arrow.gif:menu-arrow-ovr.gif", false, true, false, false, 0, true, 1, 1, "black");
	menus[1].addItem("http://www.bluedanubeviolins.com/bdp/about_bdp.htm", "", 16, "left", "About BDMI", 0);
	menus[1].addItem("http://www.bluedanubeviolins.com/bdp/about_aa.htm", "", 16, "left", "About Anthony Armore", 0);
	menus[1].addItem("http://www.bluedanubeviolins.com/bdp/om2008.htm", "", 16, "left", "Next Production", 0);
	menus[1].addItem("http://www.bluedanubeviolins.com/bdp/future_productions.htm", "", 16, "left", "Future Productions", 0);
	menus[1].addItem("http://www.bluedanubeviolins.com/bdp/past_productions.htm", "", 16, "left", "Past Productions", 0);
	menus[1].addItem("http://www.bluedanubeviolins.com/bdp/conductors.htm", "", 30, "left", "Conductors (Guest Conducting)", 0);
	menus[1].addItem("http://www.bluedanubeviolins.com/bdp/soloists_vocal_artists.htm", "", 30, "left", "Soloists/Vocal Artists (Engagements)", 0);
	menus[1].addItem("http://www.bluedanubeviolins.com/bdp/tours.htm", "", 16, "left", "Tours", 0);
	menus[1].addItem("http://www.bluedanubeviolins.com/bdp/recordings.htm", "", 16, "left", "Recordings", 0);
	menus[1].addItem("http://www.bluedanubeviolins.com/bdp/sets_and_costumes.htm", "", 16, "left", "Sets and Costumes", 0);
	menus[1].addItem("http://www.bluedanubeviolins.com/bdp/contact_us.htm", "", 16, "left", "Contact Us", 0);


} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.