BLANK_IMAGE = ImagePath +  '/b.gif';

var NOSTYLE = {
	border:0,
	shadow:0,
	color:{
		border:"",
		shadow:"",
		bgON:"",
		bgOVER:""
	},
	css:{
		ON:"",
		OVER:""
	}
};

var STYLE = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:2,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#666666",	// color of the item border, if any
		shadow:"#DBD8D1",	// color of the item shadow, if any
		bgON:"#97A7BD",		// background color for the items #AEBBCF
		bgOVER:"White"	// 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 SubMenuOffset = 37;
var SubMenuWidth = 175;
var SubMenuHeight = 27;

var MENU_ITEMS = [
	{pos:[200,72], itemoff:[38,89], leveloff:[89,89], style:NOSTYLE, size:[38,89]},
	{
		code:'<img src="'+ImagePath+'/Home.gif" width="89" height="38"  border="0" alt="Home" />',
		ocode:'<img src="'+ImagePath+'/Home-over.gif" width="89" height="38" border="0" alt="Home"  />',
		url: Path + "/default.aspx"
	},
	{
		code:'<img src="'+ImagePath+'/areasofpractice.gif" width="173" height="38" border="0"  />',
		ocode:'<img src="'+ImagePath+'/areasofpractice-over.gif" width="173" height="38" border="0"  />',
		format:{itemoff:[0,89], style:NOSTYLE, size:[38,173]}, 
		url: Path + "/areasofpractice.aspx",			
		sub:[
					{leveloff:[SubMenuOffset,2], itemoff:[SubMenuHeight,0], style:STYLE, size:[SubMenuHeight,170]},
					{code:"Overview", url: Path + "/areasofpractice.aspx"},
					{code:"Real Estate",url: Path + "/realestate.aspx"},
					{code:"Wills & Estates", url: Path + "/willsestates.aspx"},
					{code:"Corporate Law", url: Path + "/corporatelaw.aspx"}
				]
	},
	{
		code:'<img src="'+ImagePath+'/company.gif" width="110" height="38"  border="0" />',
		ocode:'<img src="'+ImagePath+'/company-over.gif" width="110" height="38"  border="0" />',
		format:{itemoff:[0,173], style:NOSTYLE, size:[38,110]},
		url: Path + "/company.aspx",	
		sub:[
					{leveloff:[SubMenuOffset,2], itemoff:[SubMenuHeight,0], style:STYLE, size:[SubMenuHeight,107]},
					{code:"Overview", url: Path + "/company.aspx"},	
					{code:"Lawyers", url: Path + "/Lawyers.aspx"},
					{code:"Careers", url: Path + "/Careers.aspx"}
				]
	},
	{
		code:'<img src="'+ImagePath+'/resources.gif" width="110" height="38" border="0" />',
		ocode:'<img src="'+ImagePath+'/resources-over.gif" width="110" height="38" border="0"  />',
		format:{itemoff:[0,110], style:NOSTYLE, size:[38,110]},
		url: Path + "/resources.aspx",	
		sub:[
					{leveloff:[SubMenuOffset,2], itemoff:[SubMenuHeight,0], style:STYLE, size:[SubMenuHeight,107]},
					{code:"Overview", url: Path + "/resources.aspx"},		
					{code:"FAQ", url: Path + "/FAQ.aspx"},	
					{code:"Files & Forms", url: Path + "/Files.aspx"},	
					{code:"Links", url: Path + "/Links.aspx"}
				]
	},
	{
		code:'<img src="'+ImagePath+'/contact.gif" width="111" height="38"  border="0" />',
		ocode:'<img src="'+ImagePath+'/contact-over.gif" width="111" height="38" border="0"  />',
		format:{itemoff:[0,110], style:NOSTYLE, size:[38,111]},
		url: Path + "/contact.aspx",	
		sub:[
					{leveloff:[SubMenuOffset,2], itemoff:[SubMenuHeight,0], style:STYLE, size:[SubMenuHeight,110]},
					{code:"Contact Details", url: Path + "/contact.aspx"},
					{code:"Legal Assistants", url: Path + "/legalassistants.aspx"}
				]
	}

]
