function aboutMenu() {
	//properties
	this.menuArray=[
		["/misc/company/com_general_0.jsp?content=company","About Us", "1", [
			["/misc/company/com_general_0.jsp?content=founder_0","Executive Team", "1"],
			["/misc/company/com_general_0.jsp?content=credos_0","Credos", "2"],
			["/misc/company/com_general_0.jsp?content=faq_0","FAQ's for the Consumer", "3"], 
			["/misc/privacy/index.jsp","Privacy Policy", "4"], 
			["/misc/termsofuse/index.jsp","Terms of Use", "5"]
			]],
		["/misc/customer/index.jsp","Customer Care", "2", []],
		["/misc/press/prs_general2_0.jsp?content=siteOverview_0","Press Room", "3", [

			["/misc/press/prs_general2_0.jsp?content=faq_0","FAQ's for the Media", "3"],
			["/misc/press/prs_general2_0.jsp?content=presskit_0","Screenshots and Logos", "4"],
			["/misc/press/prs_general2_0.jsp?content=contact_0","Media Inquiries", "5"]
			]],
		["/misc/company/com_general_0.jsp?content=contact_0","Contact Us", "4", []],
		["/misc/affiliates/afl_general_0.jsp?content=affiliates","Affiliates", "5", [
            ["/misc/affiliates/afl_general_0.jsp?content=promotions","Promotions", "1"],
            ["/misc/affiliates/afl_general_0.jsp?content=faq","FAQ", "2"],
            ["/misc/affiliates/afl_general_0.jsp?content=ruleofthumb","Rules of Thumb", "3"],
            ["/misc/affiliates/afl_general_0.jsp?content=commission","Commission Structure", "4"],
            ["/misc/affiliates/afl_general_0.jsp?content=tools","Tools: Original Content", "5"]
            ]],
		["http://www.experianinteractivemedia.com/search_jobs.html","Careers", "6" ],

		["/misc/legal/lgl_disclosures_license.jsp","Disclosures &amp; Licenses", "7", []]
		];
	
	this.formArray=["<form name=\"form\" action=\"/servlet/LMBServlet?the_action=Load&next_page=/misc/newsletter/subscribe.jsp\" method=\"post\">\n <b>Free Newsletter</b><br>\n Receive Special Savings<br>\n Tips and Offers from<br>\n LowerMyBills.com<br><br>\n  <input type=\"text\" name=\"email\" maxlength=\"60\" style=\"width:130px\"><br><br>\n <input type=\"image\" src=\"/images/about/subscribe.gif\">\n </form>", "<form action=\"/misc/press/prs_general2_0.jsp\" name=\"form1\" method=\"GET\">\n<input type=\"hidden\" name=\"content\" value=\"contact_0\" width=25>\n <b>Press Mailing List</b><br>\n Sign up for distribution<br>\n list to get the newest<br>\n press releases from<br>\n LowerMyBills.com<br><br>\n Name<br>\n <input type=\"text\" name=\"name\" style=\"width:130px\"><br>\n Email<br>\n <input type=\"text\" name=\"email\" style=\"width:130px\"><br><br><input type=\"image\" src=\"/images/about/subscribe.gif\">\n </form>" ];
		
	this.activeMenu="";
	this.activeSubItem="";
	this.form="";
	
	//methods
	this.draw=drawMenu;
	}


function drawMenu() {
	var category, link, title;
	var menuObject = [];
	
	for(i=0; i<this.menuArray.length; i++) {
		link=this.menuArray[i][0]; title=this.menuArray[i][1]; id=this.menuArray[i][2];
		if (id!=this.activeMenu) {
            if (i != 5)
              menuObject[menuObject.length]='<a href="'+link+'">'+title+'</a>\n';
            else
              menuObject[menuObject.length]='<a href="'+link+'"'+'target=\'blank\'>'+title+'</a>\n';
        }
        else {
			menuObject[menuObject.length]='<div class="submenu">';
			
			if (this.activeSubItem=="0")
				menuObject[menuObject.length]='<h2>'+title+'</h2>\n';
			else
				menuObject[menuObject.length]='<h1 onclick="location.href=\''+link+'\'">'+title+'</h1>\n';
			
			if (this.menuArray[i][3].length>0) {
				for (var x=0;x<this.menuArray[i][3].length;x++) {

                    if (this.activeSubItem != this.menuArray[i][3][x][2])menuObject[menuObject.length] = '<a href="' + this.menuArray[i][3][x][0] + '">' + this.menuArray[i][3][x][1] + '</a>\n'; else menuObject[menuObject.length] = '<b>' + this.menuArray[i][3][x][1] + '</b>\n';
                }
				}
				
			menuObject[menuObject.length]='</div>';
			}
			
		
		}
		
	for (var x=0;x<menuObject.length;x++)
		document.write(menuObject[x])  

    if (this.form !='') {
        // If form's value is not a valid index of formArray skip block
        if(this.form < this.formArray.length) {
            document.write(this.formArray[this.form])
        }

    }

}
	
