if (TransMenu.isSupported()) {
	TransMenu.updateImgPath('http://www.dvteclipse.com/joomla/modules/ja_transmenu/');
	var ms = new TransMenuSet(TransMenu.direction.down, 0, 0, TransMenu.reference.bottomLeft);
	TransMenu.subpad_x = 0;
	TransMenu.subpad_y = 0;
	
	document.getElementById("menu_home").onmouseover = function() {
		ms.hideCurrent();
	}
		
	var tmenu_features = ms.addMenu(document.getElementById("menu_features"));
	tmenu_features.addItem("Datasheets", "design_and_verification_tools_datasheet_download.php", 0, 0);
	tmenu_features.addItem("Features Matrix", "features.html", 0, 0);
	tmenu_features.addItem("Use Cases", "use_cases.html", 0, 0);
	tmenu_features.addItem("Demo Movies", "demo_movies.html", 0, 0);
	tmenu_features.addItem("e Language Snapshots", "help.html?documentation/e/Tips_and_Tricks.html", 0, 0);
	tmenu_features.addItem("SystemVerilog Snapshots", "help.html?documentation/sv/Tips_and_Tricks.html", 0, 0);
	tmenu_features.addItem("VHDL Snapshots", "help.html?documentation/vhdl/Tips_and_Tricks.html", 0, 0);

	document.getElementById("menu_license").onmouseover = function() {
		ms.hideCurrent();
	}
		
	var tmenu_install = ms.addMenu(document.getElementById("menu_install"));
	tmenu_install.addItem("Overview", "install.html", 0, 0);
	tmenu_install.addItem("From Distribution", "install_distribution.html", 0, 0);
	tmenu_install.addItem("From Update Site", "install_update_site.html", 0, 0);
	tmenu_install.addItem("From Zip Archive", "install_zip_archive.html", 0, 0);
	tmenu_install.addItem("Related Downloads", "install_related_downloads.html", 0, 0);
	tmenu_install.addItem("Uninstall", "uninstall.html", 0, 0);
	tmenu_install.addItem("Q&A", "install_qa.html", 0, 0);
		
	document.getElementById("menu_help").onmouseover = function() {
		ms.hideCurrent();
	}
	
	var tmenu_partners = ms.addMenu(document.getElementById("menu_partners"));
	tmenu_partners.addItem("Complete Solution", "partners.html", 0, 0);
	tmenu_partners.addItem("Alliances", "alliances.html", 0, 0);
	tmenu_partners.addItem("Contributors", "contributors.html", 0, 0);
	
	var tmenu_contacts = ms.addMenu(document.getElementById("menu_contacts"));
	tmenu_contacts.addItem("AMIQ", "contacts.html", 0, 0);
	tmenu_contacts.addItem("Sales Representatives", "sales_representatives.html", 0, 0);
		
    var tmenu_news = ms.addMenu(document.getElementById("menu_news"));
    tmenu_news.addItem("Press Releases", "http://www.pitchfeed.com/amiq/24357", 0, 0);
    tmenu_news.addItem("Events", "news.html", 0, 0);
	tmenu_news.addItem("What's New for e Language?", "help.html?documentation/e/whatsnew.html", 0, 0);
	tmenu_news.addItem("What's New for SystemVerilog?", "help.html?documentation/sv/whatsnew.html", 0, 0);
	tmenu_news.addItem("What's New for VHDL?", "help.html?documentation/vhdl/whatsnew.html", 0, 0);

	TransMenu.renderAll();
}
			
init1=function(){TransMenu.initialize();}
if (window.attachEvent) {
	window.attachEvent("onload", init1);
}else{
	TransMenu.initialize();			
}


