//<!--
BLANK_IMAGE = '/images/b.gif';

var STYLE = {
	backgroundClass:0,
	border:1,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#fff",	// color of the item border, if any
		/*
		shadow:"#DBD8D1",	// color of the item shadow, if any
		*/
		bgON:"#f4f4f4",		// background color for the items
		bgOVER:"#c8c8c8"	// 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
		}

};

// more menu
var STYLE1 = {
	backgroundClass:'moreMenu',
	border:1,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#fff",	// color of the item border, if any
		/*
		shadow:"#DBD8D1",	// color of the item shadow, if any
	    */
		bgON:"#f4f4f4",		// background color for the items
		bgOVER:"#c8c8c8"	// 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:'relative', itemoff:[37,0], leveloff:[0,210], size:[37,210]}, // global atributes
	
	{code:"COMPANY", style:STYLE1,
						sub:
						[
					 	{style:STYLE},
						{code:"Contact Us", "url":"/company/contact.html"},
						{code:"Careers", "url":"/company/careers.html"},
						{code:"Links", "url":"/company/links.html"}
		]
	},
	
	{code:"PRODUCTS", style:STYLE1,
					sub:
					[
					{style:STYLE},
					{code:"Nabi-HB®", "url":"/products/nabiHB.html"}, 
					{code:"Plasma for Further Manufacturing", "url":"/products/plasma/index.html", style:STYLE1,
						sub:[
						{style:STYLE},
						{code:"Plasma Centers", "url":"/products/plasma/centers.html"},
						{code:"Plasma Used for Therapeutics", "url":"/products/therapeutics.html"},
						{code:"The Biotest Pharmaceuticals Difference", "url":"/products/biotest_difference.html"}
						]
					}
				
					
		]
	},
	
		{code:"PIPELINE", style:STYLE1,
					sub:
					[
					{style:STYLE1},
				{code:"Transplant", 
						sub:[
						{style:STYLE},
						{code:"Transplant Overview", "url":"/pipeline/transplant/overview.html"},			
						//{code:"Nabi-HB® Intravenous and HEBIG™", "url":"/pipeline/transplant/nabiHB.html"},
						//{code:"Civacir&#153;", "url":"/pipeline/transplant/civacir.html"}
					]
			},
				//{code:"Obstetrics",
				//		sub:[
				//		{style:STYLE},
				//		{code:"Anti [Rho (D) Immune Globulin Intravenous (Human)]", "url":"/pipeline/obstetrics/AntiD.html"}
				//	]
			//},
				{code:"Immunology",
						sub:[
						{style:STYLE},
						{code:"IGIV [Immune Globulin Intravenous (Human)]", "url":"/pipeline/immunology/IGIV.html"}
					]
			},
				
		]
	},
				{code:"NEWS", style:STYLE1,
						sub:
						[
					 	{style:STYLE},
						{code:"Biotest Pharmaceuticals News", "url":"/news/index.html"},
						{code:"Biotest AG Corporate News", "url":"http://www.biotest.de/ww/en/pub/investor_relations/news.cfm"}
		]
	},
];
// -->