

var STYLE = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#999999",	// color of the item border, if any
		shadow:"#DBD8D1",	// color of the item shadow, if any
		bgON:"white",		// background color for the items
		bgOVER:"#A1CFED"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsCMOn",		// CSS class for items
		OVER:"clsCMOver3"	// CSS class  for item which is under mouse
	}
};

var STYLE2 = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:2,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#999999",	// color of the item border, if any
		shadow:"#DBD8D1",	// color of the item shadow, if any
		bgON:"#ffffff",		// background color for the items
		bgOVER:"#A1CFED"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsCMOn2",		// CSS class for items
		OVER:"clsCMOver2"	// CSS class  for item which is under mouse
	}
};

var MENU_ITEMS = [
	{pos:[10,10], itemoff:[0,122], leveloff:[21,0], style:STYLE, size:[22,126]},
	{code:"Home", url:"index.htm"},
	{code:"CR Systems", url:"products.htm",
		sub:[
			{itemoff:[21,0], size:[22,180], style:STYLE2},
			{code:"KONICA CR", url:"konica_cr_systems.htm"},
			{code:"iCRco CR", url:"icrco_cr_systems.htm"},	
						
			{code:"AGFA CR", url:"agfa_cr_systems.htm"},
			
			{code:"KODAK CR", url:"kodak_cr_systems.htm"},
			
			{code:"FUJI CR", url:"fuji_cr_systems.htm"},
			
			{code:"OPAL CR", url:"opal_cr.htm"},
			
		]
	},

		
	{code:"DR Systems", url:"u-arm_dr_systems.htm",
		sub:[
			{itemoff:[21,0], style:STYLE2},
			{code:"U-Arm DR", url:"u-arm_dr.htm"},
			
			{code:"Dual Detector DR", url:"dual_detector_dr.htm"},
			
			{code:"VIZION DR", url:"vizion_dr.htm"},
			
						
		]
	},
	{code:"Digital Advantages", url:"digital_advantages.htm"},
	{code:"Digital Terms", url:"digital_terms.htm"},
	{code:"PACS", url:"pacs_solutions.htm"},
	{code:"Contact Us", url:"contact_us.htm"}
];

