<!--//

// menu_items.js file

// comments block here

var MENU_ITEMS =[
		["HOME / BIOGRAPHY", "/index.shtml"],
		["ART FOLIO", "/art.shtml"],
		["BUY PRINTS", "http://www.etsy.com/shop.php?user_id=6012037"],	
	];

var MENU_POS = new Array();

	// height buttons
	MENU_POS['height']     = [13, 13];

	// width buttons
	MENU_POS['width']      = [150, 500];

	// height top browser
	MENU_POS['block_top']  = [60, 20];

	// width left browser
	MENU_POS['block_left'] = [150, 0];

	// offset stairs-space in between buttons
	MENU_POS['top']        = [0, 13];

	// space in between buttons-offset
	MENU_POS['left']       = [150, 0];

	// time allows when pointer pulls away from selection
	MENU_POS['hide_delay'] = [300, 300];

	var MENU_STYLES = new Array();

	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES['onmouseout'] = [
		'background', ['#FFFFFF', '#FFFFFF'],
		'color', ['#000000', '#000000'],
	];

	// state when item has mouse over it
	MENU_STYLES['onmouseover'] = [
		'background', ['#FFFFFF', '#FFFFFF'],
		'color', ['#3300FF', '#3300FF'],
	];

	// state when mouse button has been pressed on the item
	MENU_STYLES['onmousedown'] = [
		'background', ['#FFFFFF', '#FFFFFF'],
		'color', ['#000066', '#000066'],
	];

new menu (MENU_ITEMS, MENU_POS, MENU_STYLES);

window.focus();

//-->