BLANK_IMAGE = 'images/b.gif';

var STYLE = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"none",	// color of the item border, if any
		shadow:"none",	// color of the item shadow, if any
		bgON:"none",		// background color for the items
		bgOVER:"#000000"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsMainMenuOn",		// CSS class for items
		OVER:"clsMainMenuOver"	// CSS class  for item which is under mouse
	}
};

var SUB_STYLE = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#FF3300",	// color of the item border, if any
		shadow:"none",	// color of the item shadow, if any
		bgON:"#303030",		// background color for the items
		bgOVER:"#808080"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsSubMenuOn",		// CSS class for items
		OVER:"clsSubMenuOver"	// CSS class  for item which is under mouse
	}
};

var MENU_ITEMS = [
	{pos:[10,200], delay:[200, 800], itemoff:[0,120], leveloff:[21,0], style:STYLE, size:[22,100]},
	{code:"About",
		sub:[
			{style: SUB_STYLE, itemoff:[21,0], levelFilters:[ 'progid:DXImageTransform.Microsoft.RandomDissolve(duration=0.3)', 'progid:DXImageTransform.Microsoft.RandomDissolve(duration=0.3)' ]},
			{code:"History",url:"history.php"},
			{code:"F.A.Q.",url:"FAQ.php"},
//			{code:"Overview",url:"overview.php"},
//			{code:"Specifications",url:"specs.php"},
		]

	},
	{code:"News", url:"news.php"},
	{code:"Description",
		sub:[ 
			{style: SUB_STYLE, itemoff:[21,0], levelFilters:[ 'progid:DXImageTransform.Microsoft.RandomDissolve(duration=0.3)', 'progid:DXImageTransform.Microsoft.RandomDissolve(duration=0.3)' ]},
			{code:"BPF Unit  &gt;", url:"BPF.php",
				sub:[
					{leveloff:[0,99]},
					{code:"Results",url:"BPF.php#Results"},
					{code:"160m"},
					{code:"80m"},
					{code:"40m"},
					{code:"30m"},
					{code:"20m"},
					{code:"17m"},
					{code:"15m"},
					{code:"12m"},
					{code:"10m"}
				]
			},
			{code:"RF Unit  &gt;", url:"RF.php",
				sub:[
					{leveloff:[0,99]},
					//{code:"IF Notch Filter"},
				   {code:"Preamplifier >", url:"RF.php#Pre",
						sub:[
							{leveloff:[0,99]},
							{code:"20m BPF", url:"RF.php#20mBPF"},
							{code:"17/15m BPF", url:"RF.php#1715mBPF"},
							{code:"12/10m BPF", url:"RF.php#1210mBPF"}
						]
					},
					{code:"First mixer", url:"RF.php#Mix"},
					{code:"Roofing filters &gt;", url:"RF.php#Roof",
						sub:[
							{leveloff:[0,99]},
							{code:"2.8kHz", url:"RF.php#2k8Roof"},
							{code:"0.6kHz", url:"RF.php#0k6Roof"}
						]
               }
				]
			},
			{code:"IF Unit", url:"IF.php"},
			{code:"PA Unit", url:"PA.php"},			
			/*{code:"Synth Unit", url:"Synth.php"},
			{code:"DSP Unit", url:"DSP.php"},*/
			{code:"Control Unit", url:"Ctrl.php"}
		]
	},
	{code:"Downloads",url:"downloads.php"},
	{code:"Links", url:"links.php"},
	{code:"Contacts",
		sub:[
			{style: SUB_STYLE, itemoff:[21,0], levelFilters:[ 'progid:DXImageTransform.Microsoft.RandomDissolve(duration=0.3)', 'progid:DXImageTransform.Microsoft.RandomDissolve(duration=0.3)' ]},
			{code:"Guestbook", url:"guestbook.php"},
			{code:"Send mail", url:"sendmail.php"}
		]
	}
];

