<!--//

// menu_items.js file

// comments block here

var MENU_ITEMS =[
		["HOME", "http://www.planetinkusa.com/index.shtml"],
		["SPECIALTIES", "http://www.planetinkusa.com/specialties.shtml",	
			["Creative Options", "http://www.planetinkusa.com/specialties.shtml"],
		  	["Exceptional Color", "http://www.planetinkusa.com/specialties_color.shtml"],
		  	["Manufacturing Solutions", "http://www.planetinkusa.com/specialties_manufacturing.shtml"],
		  	["Special Materials &amp; Processes", "http://www.planetinkusa.com/specialties_materials.shtml"]
	], 	
		
		["APPROACH", "http://www.planetinkusa.com/approach.shtml"],
		["SAMPLES", "http://www.planetinkusa.com/samples.shtml",
			["Art Books", "http://www.planetinkusa.com/samples/art_books1.shtml"],
			["Corporate/Collateral", "http://www.planetinkusa.com/samples/collateral1.shtml"],
			["Gift Items", "http://www.planetinkusa.com/samples/gift_items1.shtml"],
			["Softcover Books", "http://www.planetinkusa.com/samples/softcover_books1.shtml"],
			["Children's Products", "http://www.planetinkusa.com/samples/childrens_products1.shtml"],
			["Games", "http://www.planetinkusa.com/samples/games1.shtml"],
			["Specialty Printing", "http://www.planetinkusa.com/samples/specialty_printing1.shtml"],
			["Packaging", "http://www.planetinkusa.com/samples/packaging1.shtml"]
	],
		["ESTIMATES", "http://www.planetinkusa.com/estimates.shtml"],
		["FAQ's", "http://www.planetinkusa.com/faqs.shtml"],
		["ABOUT US", "http://www.planetinkusa.com/about_us.shtml"],
		["CONTACT US", "http://www.planetinkusa.com/contact_us.shtml"]
  ];

var MENU_POS = new Array();

	MENU_POS['height']     = [16, 30];

	MENU_POS['width']      = [150, 200];

	MENU_POS['block_top']  = [135, 16];

	MENU_POS['block_left'] = [40, 60];

	MENU_POS['top']        = [30, 30];

	MENU_POS['left']       = [0, 0];

	MENU_POS['hide_delay'] = [0, 0];
	
	var MENU_STYLES = new Array();

	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES['onmouseout'] = [
		'background', ['#E7F0EF', '#F0F8F7'],
		'color', ['#005581', '#005581'],
	];

	// state when item has mouse over it
	MENU_STYLES['onmouseover'] = [
		'background', ['#E7F0EF', '#FFFFFF'],
		'color', ['#B5CCDF', '#FF9933'],
	];

	// state when mouse button has been pressed on the item
	MENU_STYLES['onmousedown'] = [
		'background', ['#E7F0EF', '#FFFFFF'],
		'color', ['#005581', '#FF9933'],
	];
	
new menu (MENU_ITEMS, MENU_POS, MENU_STYLES);

window.focus();

//-->