//variables
var COLOR1 = {border:"#FF80C0", shadow:"#DBD8D1", bgON:"White", bgOVER:"White", imagebg:"#DBD8D1", oimagebg:"#B6BDD2"};
var CSS1 = {ON:'clsCMOn', OVER:'clsCMOver'};
var STYLE1 = {border:1, shadow:2, color:COLOR1, css:CSS1};
var COLOR2 = {border:"#FF80C0", shadow:"#DBD8D1", bgON:"White", bgOVER:"Beige", imagebg:"#DBD8D1", oimagebg:"#B6BDD2"};
var STYLE2 = {border:1, shadow:2, color:COLOR2, css:CSS1};
var STYLE = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"",		// color of the item border, if any
		shadow:"",		// color of the item shadow, if any
		bgON:"",		// background color for the items
		bgOVER:""		// background color for the item which is under mouse right now
	},
	css:{
		ON:"",			// CSS class for items
		OVER:""			// CSS class  for item which is under mouse
	}
};
//menu items
var MENU_ITEMS = [
  {pos:[7, 15], size:[51, 110], itemoff:[0, 99], leveloff:[0, 0], style:STYLE}, 
    {code:'<img src="images/qstart2.png" width="110" height="51" />',
		ocode:'<img src="images/qstart2mo.png" width="110" height="51" />',
		url:"#", 
      sub:[
      {size:[25, 160], itemoff:[24, 0], leveloff:[3, 117], delay:100, imgsize:[16, 16], arrsize:[16, 16], style:STYLE2}, 
        {code:"Car Insurance", ocode:"Car Insurance", url:"http://www.home-car-insurance.com/quotes/htq-car/HCI", target:"'_hci'"},
        {code:"Home Insurance", ocode:"Home Insurance", url:"http://www.home-car-insurance.com/quotes/htq-home/HCI", target:"'_hci'"},
        {code:"Life Insurance", ocode:"Life Insurance", url:"http://www.home-car-insurance.com/quotes/htq-life/HCI", target:"'_hci'"},
        {code:"Health Insurance", ocode:"Health Insurance", url:"http://www.home-car-insurance.com/quotes/htq-health/HCI", target:"'_hci'"},
        {code:"Renter Insurance", ocode:"Renter Insurance", url:"http://www.home-car-insurance.com/quotes/htq-renter/HCI", target:"'_hci'"},
        {code:"Dental Insurance", ocode:"Dental Insurance", url:"http://www.home-car-insurance.com/quotes/dt/HCI", target:"'_hci'"},
        {code:"Disability Insurance", ocode:"Disability Insurance", url:"http://www.home-car-insurance.com/quotes/db/HCI", target:"'_hci'"},
        {code:"Long Term Care", ocode:"Long Term Care", url:"http://www.home-car-insurance.com/quotes/lt/HCI", target:"'_hci'"},
        {code:"Cancer Insurance", ocode:"Cancer Insurance", url:"http://www.home-car-insurance.com/quotes/cc/HCI", target:"'_hci'"},
        {code:"Burial Insurance", ocode:"Burial Insurance", url:"http://www.home-car-insurance.com/quotes/br/HCI", target:"'_hci'"},
        {code:"Annuity Insurance", ocode:"Annuity Insurance", url:"http://www.home-car-insurance.com/quotes/an/HCI", target:"'_hci'"},
        {code:"Business Insurance", ocode:"Business Insurance", url:"http://www.home-car-insurance.com/quotes/bs/HCI", target:"'_hci'"}
      ]}
];


