<!--//

// menu_items.js file

// comments block here

var MENU_ITEMS =[
		["HOME", "/index.shtml"],
		["PORTFOLIO", "/portfolio.shtml",
			["NATIVE AMERICAN SERIES", "/native.shtml"],
			["SOCIAL STATEMENTS", "/statements.shtml"],
			["WARFARE SERIES", "/war.shtml"],
			["BEAR SERIES", "/bears.shtml"],
			["FANTASY SERIES", "/fantasy.shtml"],
			["EVERYTHING ELSE", "/misc.shtml"]
	],
		["BIOGRAPHY", "/bio.shtml"],
		["PUBLISHINGS", "/publishings.shtml"],
		["STUFF", "http://www.cafepress.com/crazybear"],
		["CONTACT", "/contact.shtml"]
	];

var MENU_POS = new Array();

	// height buttons
	MENU_POS['height']     = [13, 13];

	// width buttons
	MENU_POS['width']      = [100, 175];

	// height top browser
	MENU_POS['block_top']  = [100, 20];

	// width left browser
	MENU_POS['block_left'] = [45, 0];

	// offset stairs-space in between buttons
	MENU_POS['top']        = [0, 20];

	// space in between buttons-offset
	MENU_POS['left']       = [101, 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', '#990000'],
		'color', ['#990000', '#FFFFFF'],
	];

	// state when item has mouse over it
	MENU_STYLES['onmouseover'] = [
		'background', ['#FFFFFF', '#FF3333'],
		'color', ['#FF3333', '#FFFFFF'],
	];

	// state when mouse button has been pressed on the item
	MENU_STYLES['onmousedown'] = [
		'background', ['#FFFFFF', '#990000'],
		'color', ['#999999', '#FFFFFF'],
	];










new menu (MENU_ITEMS, MENU_POS, MENU_STYLES);

window.focus();

//-->