/* itemoff refers to space between sub-menu items */
/* leveloff refers to offset from main menu items */

 var CM_STYLE1 = {
		border:0,      			// item's border width, pixels; zero means "none"
		shadow:0, 			// item's shadow size, pixels; zero means "none"

		css:{
			ON:"clsCMOn",   	// CSS class for items
			OVER:"clsCMOver"}	// CSS class  for item which is under mouse
		};

var CM_STYLE = {
		
		border:1,      			// item's border width, pixels; zero means "none"
		shadow:0, 			// item's shadow size, pixels; zero means "none"
				

		color:{
			border:"#454242", 	// color of the item border, if any
			shadow:"gray",  	// color of the item shadow, if any
			bgON:"#1187de",  	// background color for the items
			bgOVER:"#b2a40f" },	// background color for the item which is under mouse right now 

		

		css:{
			ON:"clsCMOn",   	// CSS class for items
			OVER:"clsCMOver"}	// CSS class  for item which is under mouse
		};

var MENU_ITEMS = [
   {pos:[25,121], size:[25,124], itemoff:[0,124], leveloff:[25,0], delay:[100,100], blankImage:"assets/b.gif", style:CM_STYLE1 },
   {code:'<img src="assets/home_btn1.png" width="124" height="25" />',
    ocode:'<img src="assets/home_btno1.png" width="124" height="25" />', url:"index.html"},
   
   {code:'<img src="assets/about_btn1.png" width="124" height="25" />',
    ocode:'<img src="assets/about_btno1.png" width="124" height="25" />', url:"about.html"},
   
   {code:'<img src="assets/software_btn1.png" width="124" height="25" />',
    ocode:'<img src="assets/software_btno1.png" width="124" height="25" />', url:"software.html"},
   
   {code:'<img src="assets/services_btn1.png" width="124" height="25" />',
    ocode:'<img src="assets/services_btno1.png" width="124" height="25" />', url:"services.html",
      sub:[
         {size:[25,124], itemoff:[26,0], leveloff:[29,0], style:CM_STYLE},
         {code:"Support", url:"support.html"},
	 {code:"Training", url:"training.html"},
	 {code:"Data Transfers", url:"transfers.html"} ]
   },

   {code:'<img src="assets/sales_btn1.png" width="124" height="25" />',
    ocode:'<img src="assets/sales_btno1.png" width="124" height="25" />', url:"sales.html"},

   {code:'<img src="assets/testimonial_btn1.png" width="124" height="25" />',
    ocode:'<img src="assets/testimonial_btno1.png" width="124" height="25" />', url:"testimonials.html"},

   {code:'<img src="assets/partners_btn1.png" width="124" height="25" />',
    ocode:'<img src="assets/partners_btno1.png" width="124" height="25" />', url:"partners.html",
      sub:[
         {size:[25,124], itemoff:[26,0], leveloff:[29,0], style:CM_STYLE},
         {code:"FWBS", url:"http://www.fwbs.net/index.aspx2", target:"_blank"} ]
   },
   
   {code:'<img src="assets/contact_btn1.png" width="124" height="25" />',
    ocode:'<img src="assets/contact_btno1.png" width="124" height="25" />', url:"contactus.html"}

];