var STYLE = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#ffffff",	// color of the item border, if any
		shadow:"#DBD8D1",	// color of the item shadow, if any
		bgON:"282C2B",		// background color for the items
		bgOVER:"#F8B04C"	// 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:[0,99], leveloff:[0,0], style:STYLE, size:[22,100]},
	{code:"Home", url:"index.php?show"},
		{code:"Sign Up", url:"welcome.php?rentals=add"},
		{code:"Member Login", url:"welcome.php?rentals=add"},
				{code:"View Rentals", url:"welcome.php?rentals=view"},
						{code:"View Renters", url:"welcome.php?rentals=people"},

			{code:"Advertise", url:"welcome.php?rentals=advertise"},

		{code:"Contact", url:"welcome.php?rentals=contact",
			sub:[
			{itemoff:[21,0], leveloff:[21,0]},
			{code:"Privacy Policy", "url":"welcome.php?rentals=privacy"}
			]
	}





	


];

