
	if (DropDown.isSupported()) {
        //alert("hi");
		//==================================================================================================
		// create a set of dropdowns
		//==================================================================================================
		// the first param should always be down, as it is here
		//
		// The second and third param are the top and left offset positions of the menus from their actuators
		// respectively. To make a menu appear a little to the left and bottom of an actuator, you could use
		// something like -5, 5
		//
		// The last parameter can be .topLeft, .bottomLeft, .topRight, or .bottomRight to inidicate the corner
		// of the actuator from which to measure the offset positions above. Here we are saying we want the 
		// menu to appear directly below the bottom left corner of the actuator
		//==================================================================================================
		var ms = new DropDownSet(DropDown.direction.down, 0, -9, DropDown.reference.bottomLeft);
                                                        //x , y    
		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		
		//Solutions
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Technology Solutions", "/solutions/technology/index.shtml");
		menu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Data Breach Prevention", "/solutions/data-breach-prevention/index.shtml");
		menu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Compliance Solutions", "/solutions/compliance/index.shtml");  
        menu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Industry Solutions", "/solutions/industry/index.shtml");
	
		//Products
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">For the Enterprise - DbProtect", "/products/dbprotect/index.shtml");
		menu2.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">For Auditors - AppDetectivePro", "/products/appdetective/index.shtml");
		menu2.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Product Evaluations and Downloads", "/downloads/");
		menu2.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Two Minute Tutorials", "/products/videos/index.shtml");
		
		//Partners
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Data Security Alliance Partners", "/partners/Data-Security-Alliance-Partners.shtml");
		menu3.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Audit and Advisory Practice Partners", "/partners/securitysppartners.shtml");
		menu3.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Solution Value Added Resellers", "/partners/securitysrpartners.shtml"); 
		menu3.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Become a Partner", "/partners/becomeapartner/index.shtml");
		menu3.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Partner Directory", "/partners/directory/index.shtml");
		menu3.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Partner Login", "http://appsec.icentera.com/portals/login.asp");
		
	    //Support
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Training Center", "/support/training");
		menu4.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Professional Services", "/support/services");
		menu4.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Customer Support Portal", "/support/customer_portal");
		menu4.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Security Updates", "/asap");
		menu4.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Security Alerts", "/resources/alerts"); 
		menu4.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">MASTER Support Program", "/support/master.shtml"); 
		menu4.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Resource Center", "/resources/whitepapers/welcome/");
		menu4.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Vulnerability Disclosure Policy", "/aboutus/vulndisclosepolicy/index.shtml"); 
		
		//News & Events
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("<img src=\"images/spacer.gif\" width=\"5\" height=\"1\">News", "/news/index.shtml");
		menu5.addItem("<img src=\"images/spacer.gif\" width=\"5\" height=\"1\">Events and Tradeshows", "/news/events.shtml"); 
		menu5.addItem("<img src=\"images/spacer.gif\" width=\"5\" height=\"1\">Press Releases", "/news/pr/index.shtml"); 
		menu5.addItem("<img src=\"images/spacer.gif\" width=\"5\" height=\"1\">Webinars", "/news/casts/index.shtml"); 
		menu5.addItem("<img src=\"images/spacer.gif\" width=\"5\" height=\"1\">Video Highlights", "/news/video/index.shtml"); 
		
		//About Us
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Company", "/aboutus/index.shtml");
		menu6.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Management Team", "/aboutus/management/index.shtml"); 
		menu6.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Board of Directors", "/aboutus/board/index.shtml"); 
		menu6.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Team SHATTER ", "/aboutus/teamshatter/index.shtml"); 
		menu6.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Careers", "/aboutus/careers/index.shtml");  
		menu6.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Contact Us", "/contact/index.shtml");
		menu6.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Media Kit", "/aboutus/mediakit/index.shtml");
		menu6.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Customers", "/aboutus/customers/index.shtml");

        //third Level  - Solutions/Technology Solutions
        //var subMenu1 = menu1.addMenu(menu1.items[0]);
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Database Activity Monitoring", "/products/dbprotect/database-activity-monitoring.shtml"); 
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Vulnerability Management", "/products/dbprotect/vulnerability-management.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Rights Management", "/products/dbprotect/rights-management.shtml");

		//third Level  - Solutions/Data Breach Prevention
		//var subMenu1 = menu1.addMenu(menu1.items[1]);
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Security in the Cloud", "/solutions/secure-cloud-computing/index.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">SQL Injection", "/solutions/attack-vectors/index.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Advanced Persistant Threat", "/solutions/risk-management/advanced-persistant-threat.shtml");
					
		//third Level  - Solutions/Compliance Solutions
		//var subMenu1 = menu1.addMenu(menu1.items[2]);
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Continuous Monitoring", "/solutions/compliance/continuous-monitoring.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">&nbsp;&nbsp;&nbsp;FISMA", "/solutions/compliance/continuous-monitoring.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">&nbsp;&nbsp;&nbsp;NIST 800.53", "/solutions/compliance/continuous-monitoring.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">&nbsp;&nbsp;&nbsp;DISA STIG", "/solutions/compliance/continuous-monitoring.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">SOX", "/solutions/sarbanesoxley/index.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">PCI", "/solutions/pci/index.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">HIPAA", "/solutions/hipaa/index.shtml");

		//third Level  - Solutions/By Industry
		//var subMenu1 = menu1.addMenu(menu1.items[3]);
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Banking and Financial", "/solutions/industry/banking-and-financial.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Federal, State and Local Government", "/solutions/federal/index.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Health and Life Sciences", "/solutions/industry/healthcare.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Telecom and Utilities", "/solutions/industry/utilities.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Education", "/solutions/industry/higher-education.shtml"); 
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Retail", "/solutions/industry/retail.shtml");
		
		//third Level  - Products/Audit and Compliance
		//var subMenu1 = menu2.addMenu(menu2.items[0]);
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">VULNERABILITY MANGEMENT", "/products/dbprotect/vulnerability-management.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">&nbsp;&nbsp;&nbsp;Database Discovery", "/products/dbprotect/vulnerability-management.shtml#data-d");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">&nbsp;&nbsp;&nbsp;Sensitive Data Discovery", "/products/dbprotect/vulnerability-management.shtml#sensitive");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">&nbsp;&nbsp;&nbsp;Penetration Testing", "/products/dbprotect/vulnerability-management.shtml#pentest");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">&nbsp;&nbsp;&nbsp;Security & Configuration Auditing", "/products/dbprotect/vulnerability-management.shtml#pentest");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">&nbsp;&nbsp;&nbsp;Risk Analysis", "/products/dbprotect/vulnerability-management.shtml#risk");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">&nbsp;&nbsp;&nbsp;Policy Development", "/products/dbprotect/vulnerability-management.shtml#policy");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">&nbsp;&nbsp;&nbsp;SHATTER Knowledgebase", "/products/dbprotect/vulnerability-management.shtml#shatter");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">RIGHTS MANGEMENT", "/products/dbprotect/rights-management.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">DATABASE ACTIVITY MONITORING", "/products/dbprotect/database-activity-monitoring.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">&nbsp;&nbsp;&nbsp;Active Response", "/products/dbprotect/database-activity-monitoring.shtml#ACTIVE");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">REPORTING & ANALYTICS", "/products/dbprotect/reporting-and-analytics.shtml");
		
		//third Level  - Partners/Item1
       // var subMenu1 = menu3.addMenu(menu3.items[4]);
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Africa", "/partners/directory/africa.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Asia", "/partners/directory/asia.shtml"); 
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Australia and New Zealand", "/partners/directory/australia.shtml"); 
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Caribbean, Central and South America", "/partners/directory/carib-CA-SA.shtml"); 
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Europe", "/partners/directory/europe.shtml"); 
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">North America", "/partners/directory/n-america.shtml"); 
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Mexico", "/partners/directory/mexico.shtml");
		
		//third Level  - Support
		//var subMenu1 = menu4.addMenu(menu4.items[3]);
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">ASAP Updates", "/asap/updates/");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">ASAP Installation", "/asap/updates/");
	
		//var subMenu1 = menu4.addMenu(menu4.items[4]);
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Team SHATTER Alerts", "/resources/alerts/");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Security Alert Downloads", "/resources/alerts/security_alert_downloads/");
		
		//var subMenu1 = menu4.addMenu(menu4.items[6]);
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Whitepapers", "/resources/whitepapers/welcome/");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Security Links", "/resources/security/");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Platform Specific Links", "/resources/platform/");
 
		//third Level  - NEWS
        //comment out these lines to remove level
        //var subMenu1 = menu5.addMenu(menu5.items[0]);
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Some New Vertical", "/contact/index.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Some New Vertical2", "/contact/index.shtml"); 

		//third Level  - About Us
        //comment out these lines to remove level
        //var subMenu1 = menu6.addMenu(menu6.items[0]);
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Some New Vertical", "/contact/index.shtml");
		//subMenu1.addItem("<img src=\"/images/spacer.gif\" width=\"5\" height=\"1\">Some New Vertical2", "/contact/index.shtml");
		
		
		 //third Level
        //comment out these lines to remove level
        //var subMenu1 = menu2.addMenu(menu2.items[3]);
		//subMenu1.addItem("sub sub", "#");
		//subMenu1.addItem("Sub Sub Two", "#");
		//subMenu1.addItem("Sub Sub Three", "#");
		//subMenu1.addItem("Sub Sub Four", "#");


		
		








		 
		//==================================================================================================
		// write drop downs into page
		//==================================================================================================
		// this method writes all the HTML for the menus into the page with document.write(). It must be
		// called within the body of the HTML page.
		//==================================================================================================
		DropDown.renderAll();
	}

