
var imgPath = 'include/images/';
var loaded = 0;
		btn0_off = new Image();btn0_off.src = imgPath + 'gnav01.gif';
		btn0_on = new Image();btn0_on.src = imgPath + 'gnav01_over.gif';
		btn1_off = new Image();btn1_off.src = imgPath + 'gnav02.gif';
		btn1_on = new Image();btn1_on.src = imgPath + 'gnav02_over.gif';
		btn2_off = new Image();btn2_off.src = imgPath + 'gnav03.gif';
		btn2_on = new Image();btn2_on.src = imgPath + 'gnav03_over.gif';
		btn3_off = new Image();btn3_off.src = imgPath + 'gnav04.gif';
		btn3_on = new Image();btn3_on.src = imgPath + 'gnav04_over.gif';
		btn4_off = new Image();btn4_off.src = imgPath + 'gnav05.gif';
		btn4_on = new Image();btn4_on.src = imgPath + 'gnav05_over.gif';
		btn5_off = new Image();btn5_off.src = imgPath + 'gnav06.gif';
		btn5_on = new Image();btn5_on.src = imgPath + 'gnav06_over.gif';

		btm_home_off = new Image();btm_home_off.src = imgPath + 'btm_home.gif';
		btm_home_on = new Image();btm_home_on.src = imgPath + 'btm_home_on.gif';
		btm_company_off = new Image();btm_company_off.src = imgPath + 'btm_company.gif';
		btm_company_on = new Image();btm_company_on.src = imgPath + 'btm_company_on.gif';
		btm_sitemap_off = new Image();btm_sitemap_off.src = imgPath + 'btm_sitemap.gif';
		btm_sitemap_on = new Image();btm_sitemap_on.src = imgPath + 'btm_sitemap_on.gif';
		btm_contact_off = new Image();btm_contact_off.src = imgPath + 'btm_contact.gif';
		btm_contact_on = new Image();btm_contact_on.src = imgPath + 'btm_contact_on.gif';



loaded = 1;

var menuBg = '#B2B2B2';
var defoultColor = '#B2B2B2';
var focusColor = '#E1E1E1';
var txt_color='#000000'
var mtop = 72;


var mObjArray = new Array();
var superPath = "http://www.wacom.com.au";
//var superPath = "";

mObjArray[0] = new mItem(150,117);
mObjArray[0].label[0] = new lItem("Specials", "products.cfm?ID=35","_self");
mObjArray[0].label[1] = new lItem("Intuos 3", "products.cfm?ID=19","_self");
mObjArray[0].label[2] = new lItem("Graphire 4","products.cfm?ID=20","_self");
mObjArray[0].label[3] = new lItem("Graphire Bluetooth","products.cfm?ID=27","_self");
mObjArray[0].label[4] = new lItem("Cintiq","products.cfm?ID=30","_self");
mObjArray[0].label[5] = new lItem("Interactive Pen Display","products.cfm?ID=32","_self");
mObjArray[0].label[6] = new lItem("Bamboo","products.cfm?ID=29","_self");


mObjArray[1] = new mItem(150,217);
mObjArray[1].label[0] = new lItem("Intuos 3", "products.cfm?ID=22","_self");
mObjArray[1].label[1] = new lItem("Graphire 4","products.cfm?ID=24","_self");
mObjArray[1].label[2] = new lItem("Graphire Bluetooth","products.cfm?ID=27","_self");
mObjArray[1].label[3] = new lItem("Cintiq","products.cfm?ID=31","_self");
mObjArray[1].label[4] = new lItem("Interactive Pen Displays","products.cfm?ID=37","_self");
mObjArray[1].label[5] = new lItem("Bamboo","products.cfm?ID=38","_self");
mObjArray[1].label[6] = new lItem("Older Models","products.cfm?ID=34","_self");
mObjArray[1].label[7] = new lItem("Tutorial Resources","products.cfm?ID=36","_self");



mObjArray[2] = new mItem(150,330);
mObjArray[2].label[0] = new lItem("Tablet Basics",superPath + "/technical/howto_pentab/pen.html","_blank");
mObjArray[2].label[1] = new lItem("Tips & Tricks",superPath + "/technical/technical_index.html","_blank");
mObjArray[2].label[2] = new lItem("Case Study",superPath + "/casestudy/casestudy_index.html","_blank");



mObjArray[3] = new mItem(150,431);
mObjArray[3].label[0] = new lItem("Register your tablet",superPath + "/registration.html","_blank");
mObjArray[3].label[1] = new lItem("Support FAQ","http://club.wacom.co.jp/wacom-en/servlet/support.user.Swusr101Sv00","_blank");
mObjArray[3].label[2] = new lItem("Prepurchase FAQ",superPath + "/faq/prepurchase.html","_blank");
mObjArray[3].label[3] = new lItem("Driver Downloads",superPath + "/download/download_index.html","_blank");
mObjArray[3].label[4] = new lItem("Manual Downloads",superPath + "/download/manual_download.html","_blank");


mObjArray[4] = new mItem(150,575);
mObjArray[4].label[0] = new lItem("Terms & Conditions","terms.cfm","_self");
mObjArray[4].label[1] = new lItem("Privacy Policy","privacy.cfm", "_self");
mObjArray[4].label[2] = new lItem("Satisfaction Guarantee","satisfaction.cfm", "_self");



mObjArray[5] = new mItem(150,611);
mObjArray[5].label[0] = new lItem("Corporate Information",superPath + "/what/corporate.html","_blank");
mObjArray[5].label[1] = new lItem("What's New?",superPath + "/what/what_index.php","_blank");



function mItem(width,x) {
	this.label = new Array();
	this.width = width;
	this.left = x;
}


function lItem(lName,url,target){
	if(!lName && !url && !target) this.layer= false;
	else{
		this.layer= true;
		this.name = lName;
		this.href = url;
		this.target = target;
	}
}

