//BLANK_IMAGE = 'add-space.gif';

var lastTip = null;
var POS1 = "relative";

function setVis(id, value) {
	var o;
	if (document.getElementById && (o = document.getElementById(id)) && o.style)
		o.style.visibility = value;
}
function show(id) {
	setVis(id, 'visible');
}
function hide(id) {
	setVis(id, 'hidden');
}
function navTip(id) {
	if (lastTip)
		hide(lastTip);
	show(id);
	lastTip = id;
}


var STYLE = {
	border:0,
	shadow:0,
	color:{
		border:'#CCCCCC',
		shadow:'#333333',
		bgON:'',
		bgOVER:''
	},
	css:{
		ON:'clsCMOn',
		OVER:'clsCMOver'
	}
};

var STYLE2 = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#CCCCCC",	// color of the item border, if any
		shadow:'#333333',	// 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:"clsCMOn2",		// CSS class for items
		OVER:"clsCMOver2"	// CSS class  for item which is under mouse
	}
};

var STYLE3 = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#CCCCCC",	// color of the item border, if any
		shadow:'#333333',	// color of the item shadow, if any
		bgON:'#201010',		// background color for the items
		bgOVER:'#432421'	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsCMOn3",		// CSS class for items
		OVER:"clsCMOver3"	// CSS class  for item which is under mouse
}
};


var MENU_ITEMS_ARROWS =
[
	{pos:"relative", itemoff:[0,50], "leveloff":[0,0], "style":STYLE2, "size":[20,50], "delay":[200]},
    	{code:"HOME", url:"/index.asp", format:{size:[40,135], itemoff:[23,0]}},
    	{code:"ORIGINAL SERIES", url:"/originalSeries.asp", format:{size:[40,135], itemoff:[23,0]}},
		{code:"JEEPER SERIES", url:"/jeeperSeries.asp", format:{size:[40,135], itemoff:[23,0]}},
		{code:"OUTDOOR SPORTSMAN", url:"/outdoorSportsman.asp", format:{size:[40,135], itemoff:[23,0]}},
    	{code:"SPECIAL SERVICE", url:"/specialService.asp", "format":{size:[40,135], itemoff:[25,0]}},
    	{code:"RAT CAGE OPTIONS", url:"/options.asp", "format":{size:[40,135], itemoff:[23,0]}},
		{code:"DEALER LOCATIONS", url:"/dealers.asp", format:{size:[40,135], itemoff:[24,0]}},
		{code:"CONTACT US",  url: "/contact.asp", format:{size:[40,135], itemoff:[25,0]}},
		];
