/*
================================
include file: menu_variables.js
================================
*/

// top and bottom menu values

var MENU_ITEMS_TOP =[
	["Home", "index.html"],
	["About", "about.html"],
	["Clients", "clients.html"],
	["News", "news.html"],
	["Contact", "contact.html"]
];

var MENU_ITEMS_BOTTOM =[
	["Design & Print", "design_and_print.html"],
	["PR", "pr.html"],
	["Promotions", "promotions.html"],
	["Events", "events.html"],
	["Branding", "branding.html"],
	["Direct Mail", "direct_mail.html"],
	["Advice", "advice.html"]
];

// top and bottom menu geometry and timings

// TOP

var MENU_POS_TOP = new Array();

	// item sizes for different levels of menu
	MENU_POS_TOP['height']     = [20]; 
	MENU_POS_TOP['width']      = [107];

	// menu block offset from the origin:
	//  for root level origin is upper left corner of the page
	//  for other levels origin is upper left corner of parent item
	MENU_POS_TOP['block_top']  = [45]; 
	MENU_POS_TOP['block_left'] = [235];

	// offsets between items of the same level
	MENU_POS_TOP['top']        = [0];
	MENU_POS_TOP['left']       = [107];

	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS_TOP['hide_delay'] = [200];

// BOTTOM

var MENU_POS_BOTTOM = new Array();

	// item sizes for different levels of menu
	MENU_POS_BOTTOM['height']     = [20];
	MENU_POS_BOTTOM['width']      = [105];

	// menu block offset from the origin:
	//  for root level origin is upper left corner of the page
	//  for other levels origin is upper left corner of parent item
	MENU_POS_BOTTOM['block_top']  = [490];
	MENU_POS_BOTTOM['block_left'] = [35];

	// offsets between items of the same level
	MENU_POS_BOTTOM['top']        = [0];
	MENU_POS_BOTTOM['left']       = [105];

	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS_BOTTOM['hide_delay'] = [200];


// MENU STYLES

var MENU_STYLES_TOP = new Array();

	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES_TOP['onmouseout'] = [
		'color', ['#ffffff'],
		'background', ['#990099'],
	];

	// state when item has mouse over it
	MENU_STYLES_TOP['onmouseover'] = [
		'color', ['#ffffff'],
		'background', ['#999999'],
	];

	// state when mouse button has been pressed on the item
	MENU_STYLES_TOP['onmousedown'] = [
		'color', ['#ffffff'],
		'background', ['#000000'],
	];
	

var MENU_STYLES_BOTTOM = new Array();

	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES_BOTTOM['onmouseout'] = [
		'color', ['#ffffff'],
		'background', ['#999999'],
	];

	// state when item has mouse over it
	MENU_STYLES_BOTTOM['onmouseover'] = [
		'color', ['#ffffff'],
		'background', ['#990099'],
	];

	// state when mouse button has been pressed on the item
	MENU_STYLES_BOTTOM['onmousedown'] = [
		'color', ['#ffffff'],
		'background', ['#000000'],
	];
	
/*
======================================
end of include file: menu_variables.js
======================================
*/

