
var imgPath = 'include/images/';
var loaded = 0;
        btn0_off = new Image();btn0_off.src = imgPath + 'gnav02.gif';
		btn0_on = new Image();btn0_on.src = imgPath + 'gnav02_over.gif';
		btn1_off = new Image();btn1_off.src = imgPath + 'gnav04.gif';
		btn1_on = new Image();btn1_on.src = imgPath + 'gnav04_over.gif';
		btn2_off = new Image();btn2_off.src = imgPath + 'terms.gif';
		btn2_on = new Image();btn2_on.src = imgPath + 'terms_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-asia.com";
var superPath = "";

mObjArray[0] = new mItem(150,116);

mObjArray[0].label[0] = new lItem("Tablet Basics",superPath + "http://www.nz.wacom-asia.com/technical/howto_pentab/pen.html","_blank");
mObjArray[0].label[1] = new lItem("Tips & Tricks",superPath + "http://www.nz.wacom-asia.com/technical/technical_index.html","_blank");
mObjArray[0].label[2] = new lItem("Case Study",superPath + "http://www.nz.wacom-asia.com/casestudy/casestudy_index.html","_blank");

mObjArray[1] = new mItem(150,362);
mObjArray[1].label[0] = new lItem("Terms of Use","termsofuse.aspx","_self");
mObjArray[1].label[1] = new lItem("Privacy Policy","privacy.aspx", "_self");

mObjArray[2] = new mItem(150,218);
mObjArray[2].label[0] = new lItem("Support News","http://www.nz.wacom-asia.com/faq/faq_index.html","_blank");
mObjArray[2].label[1] = new lItem("Support FAQ","http://club.wacom.co.jp/wacom-en/servlet/support.user.Swusr101Sv00","_blank");
mObjArray[2].label[2] = new lItem("Prepurchase FAQ","http://www.nz.wacom-asia.com/faq/prepurchase.html","_blank");
mObjArray[2].label[3] = new lItem("Driver Downloads","http://www.nz.wacom-asia.com/download/download_index.html","_blank");
mObjArray[2].label[4] = new lItem("Manual Downloads","http://www.nz.wacom-asia.com/download/manual_download.html","_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;
	}
}

