///////////////////////////////////////////////////////////////////////////////////////////////
// menubar.js																	 		 //
///////////////////////////////////////////////////////////////////////////////////////////////
// 																							 //
// Company Name: Dreamwave Sdn Bhd                                                           //
// Author: Tan Hiang Tiang                                                                   //
// Version: 1.0																			     //
// Creation Date: 06 March 2008                                                              //
// 																						     //
// Usage: 																				     //
//    	just include them command call to display the main menu bar							 //
//																						     //
// Description:                                                                              //
//		Displays the menubar properly													     //
// 					                                     									 //
//																						     //
// Remarks:																				     //
//    												     									 //
//																							 //
// Version: 1.1		  By: Httan		Search Key: -	Date Modified: -			  			 //
//																							 //
///////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2008 Dreamwave Sdn Bhd. 													 //
///////////////////////////////////////////////////////////////////////////////////////////////

// Build the main menu here

var myMenu =
[
	[null,'Home',fullpath + '','_self', 'Home'],
	//[null,'Personal',fullpath + 'personal.php','_self', 'Personal'],
	//[null,'Corporate',fullpath + 'corporate.php','_self', 'Corporate'],
	[null,'Provider',fullpath + 'provider.php','_self', 'Provider'],
	[null,'Services',fullpath + 'services.php','_self', 'Services',
		//[null,'Pricing',fullpath + 'services.php','_self','Pricing'],
		[null,'Package',fullpath + 'services.php','_self','Package'],
		//[null,'Subscribe Now',fullpath + 'services.php?pg=buy','_self','Subscribe Now'],
		[null,'Request Now',fullpath + 'services.php?pg=buy','_self','Request Now'],
		[null,'Customization',fullpath + 'services.php?pg=custom','_self','Customization'],
		[null,'Documentation',fullpath + 'services.php?pg=doc','_self','Documentation']
	],
	[null,'Support',fullpath + 'support.php','_self', 'Support',
		[null,'Installation',fullpath + 'support.php','_self','Installation'],
		[null,'Implementation',fullpath + 'support.php?pg=imp','_self','Implementation'],
		[null,'Service Packs',fullpath + 'support.php?pg=sp','_self','Service Packs'],
		[null,'Support Request',fullpath + 'support.php?pg=req','_self','Support Request']
	],
	[null,'Company',fullpath + 'about.php','_self','Dreamwave',
		[null,'About Dreamwave',fullpath + 'about.php','_self','About Dreamwave'],
		[null,'Contact Us',fullpath + 'about.php?pg=cnt','_self','Contact'],
		[null,'Enquiry',fullpath + 'about.php?pg=eq','_self','Enquiry'],
		//[null,'Careers',fullpath + 'about.php?pg=cr','_self','Careers At Dreamwave'],
		[null,'Privacy Policy',fullpath + 'about.php?pg=plc','_self','Privacy Policy'],
		[null,'Terms of Service',fullpath + 'about.php?pg=term','_self','Terms of Service'],
		[null,'Customers',fullpath + 'about.php?pg=cust','_self','Customers'],
		[null,'FAQ',fullpath + 'about.php?pg=faq','_self','Frequently Asked Questions']
	]
];

cmDraw ('main_menu', myMenu, 'hbr', cmThemeOffice);

