function Is() {
  agent       = navigator.userAgent.toLowerCase();
  this.major  = parseInt(navigator.appVersion);
  this.minor  = parseFloat(navigator.appVersion);
  this.ns     = ((agent.indexOf('mozilla')   != -1) &&
                (agent.indexOf('spoofer')    == -1) &&
                (agent.indexOf('compatible') == -1) &&
                (agent.indexOf('opera')      == -1) &&
                (agent.indexOf('webtv')      == -1) &&
                (agent.indexOf('hotjava')    == -1) &&
      (agent.indexOf("msie")  == -1));
  this.ns2    = (this.ns && (this.major      ==  2));
  this.ns3    = (this.ns && (this.major      ==  3));
  this.ns4    = (this.ns && (this.major      ==  4));
  this.ns6    = (this.ns && (this.major      >=  5));
  this.ie     = ((agent.indexOf("msie")      != -1) &&
                (agent.indexOf("opera")      == -1));
  this.ie3    = (this.ie && (this.major      <   4));
  this.ie4    = (this.ie && (this.major      ==  4) &&
                (agent.indexOf("msie 4")     != -1));
  this.ie5    = (this.ie && (this.major      ==  4) &&
                (agent.indexOf("msie 5")     != -1) &&
                (agent.indexOf("msie 5.5")   == -1) &&
                (agent.indexOf("mac")        == -1));
  this.iem5   = (this.ie && (this.major      ==  4) &&
                (agent.indexOf("msie 5.")    != -1) &&
               (agent.indexOf("mac")        != -1));
  this.ie55   = (this.ie && (this.major      ==  4) &&
                (agent.indexOf("msie 5.5")   != -1));
  this.ie6    = (this.ie && (this.major      ==  4) &&
                (agent.indexOf("msie 6")     != -1));
  this.moz = (agent.indexOf("gecko")!= -1)
  this.nsdom  = (this.ns4  || this.ns6);
  this.win = (agent.indexOf("win") != -1);
  this.iestrict = (this.win && this.ie6 && document.compatMode == "CSS1Compat");
  this.macstrict = (this.ie5 && this.iemac && document.doctype && document.doctype.name.indexOf(".dtd") != -1);
  this.strict = (this.iestrict || this.macstrict);
  this.iemac =(this.iem5);
  this.iewin = ((this.ie5 && !this.iemac || this.ie55 || this.ie6) && this.win);
  this.dom = (this.iewin || this.ns6 || this.moz);
}
var is = new Is();
var css_px = (is.ns4 || is.ie4) ?"" : "px";

function menuObj(obj, par, nst, p) {
    page = new Object();
    page.width = (is.ns6 || is.ns4 || is.moz) ? innerWidth : document.body.clientWidth;
    page.height = (is.ns6 || is.ns4 || is.moz) ? innerHeight : document.body.clientHeight;
    if (!is.ns4) {
        this.lyr = (is.dom || is.iemac) ? document.getElementById(obj) : document.all[obj];
    } else {
        this.lyr = (!nst) ? document.layers[obj] : document.layers[nst].document.layers[obj];
    }
    this.sty = (!is.ns4) ? this.lyr.style : this.lyr;
    this.parent = par;
    this.obj = obj + "SwipeLayer";
    eval(this.obj + "= this");
}
menuObj.prototype.timer = null;
menuObj.prototype.wipe = 0;
if (is.iemac){
menuObj.prototype.offX = Function('oX = this.lyr.offsetLeft -6+-(mAtt.border)+0; return oX');
menuObj.prototype.offY = Function('oY = this.lyr.offsetTop-2+-(mAtt.border)+0+(0);return oY;');
} else {
menuObj.prototype.offX = Function('oX = (is.dom || is.ie4) ? this.lyr.offsetLeft  : parseInt(this.sty.left);return oX');
menuObj.prototype.offY = Function('oY = (is.dom || is.ie4) ? this.lyr.offsetTop  : parseInt(this.sty.top);return oY;');
}
menuObj.prototype.offW = Function('oW = (!is.ns4) ? this.lyr.offsetWidth : this.lyr.clip.width; return oW;')
menuObj.prototype.offH = Function('oH = (!is.ns4) ? this.lyr.offsetHeight : this.lyr.clip.height; return oH;')
menuObj.prototype.maxWipe = function() {
   	if(!is.ns4) return this.offH()+10;
		else return (sAtt.height*this.lyr.document.layers.length)+10;
}
wipeMenu.prototype.addMain = function(name, hasSub, txt, url) {
	menuName = this.name, wipePos = this.pos, mAtt = this.mAtt, sAtt = this.sAtt;
	var pf = Math.ceil(((mAtt.height-mAtt.font_size)/2)-2);
	var pd = "padding:0px 6px 0px 6px;";
	var styStr2 = "position:absolute; visibility:hidden; clip:rect(0px 1000px 0px 0px); border:solid 1px "+sAtt.border_color+"; border-width:"+sAtt.border+"px 0px 0px 0px; cursor:default;";
	if(this.main[name]) return;
	if(is.ns4) {
		var mainMenu = new Layer(mAtt.width);
		var styStr = "text-decoration:none; font-weight:"+mAtt.font_weight+"; z-index:1; color:"+mAtt.fg_off+"; padding:"+((mAtt.height/2)-(mAtt.font_size/2)-1)+"px 0px 0px 0px; font-size:"+mAtt.font_size+"px; font-family:"+mAtt.font+";"
		mainMenu.document.write('<div align="'+mAtt.align+'" style="'+pd+'"><a href="'+url+'" style="'+styStr+'">'+txt+'</a></div>');
		mainMenu.document.close();
		var mainMenu1 = new Layer(mAtt.width);
		mainMenu.captureEvents(Event.MOUSEUP);
		mainMenu.resizeTo(mAtt.width,mAtt.height);
		if(mAtt.bg_off.indexOf("url") != -1) {
			mainMenu.background.src = mAtt.bg_off.substring(4,mAtt.bg_off.length-1);
			mainMenu.background.src = mAtt.bg_off.substring(4,mAtt.bg_off.length-1);
		} else mainMenu.bgColor = mAtt.bg_off;
		mainMenu.visibility = "visible";
		}
	if(is.dom || is.iemac) {
		var mainMenu = document.createElement("DIV");
		var wf = (is.ns6 || is.moz || is.strict) ? 12+(mAtt.border*2) : 0;
		var pf2 = (mAtt.height%2 == 0) ? 1 : 0;
		var styStr = "position:absolute; font-weight:"+mAtt.font_weight+"; z-index:1; width:"+(mAtt.width-wf)+"px; border:solid "+mAtt.border+"px "+mAtt.border_color+"; color:"+mAtt.fg_off+";  text-align:"+mAtt.align+"; font-size:"+mAtt.font_size+"px; font-family:"+mAtt.font+"; padding:"+pf+"px 6px "+(pf+pf2)+"px 6px; background:"+mAtt.bg_off+"; cursor:pointer; cursor:hand;"
		mainMenu.innerHTML = txt;
		mainMenu.id = name+menuName;
		mainMenu.style.cssText = styStr;
		mainMenu.setAttribute("style", styStr);
		document.body.appendChild(mainMenu);
	}
	if(is.ie4) {
		var wf = 6; 
		var styStr = "position:absolute; width:"+(mAtt.width-wf)+"px; font-weight:"+mAtt.font_weight+"; z-index:1; border:solid "+mAtt.border+"px "+mAtt.border_color+"; color:"+mAtt.fg_off+"; text-align:"+mAtt.align+"; font-size:"+mAtt.font_size+"px; font-family:"+mAtt.font+"; padding:"+pf+"px 6px "+(pf+pf2)+"px 6px; background:"+mAtt.bg_off+"; cursor:pointer; cursor:hand;"
		var mM = '<div id="'+name+menuName+'" style="'+styStr+'">'+txt+'</div>';
		document.body.insertAdjacentHTML("beforeEnd", mM);
		var mainMenu = document.all[name+menuName];
	}
	mainMenu.onmouseover = new Function('if('+hasSub+')'+menuName+'.subs["'+name+'"].show("'+wipePos+'"); over_out(this, "'+mAtt.bg_on+'", "'+mAtt.fg_on+'")');
	mainMenu.onmouseout = new Function('if('+hasSub+')'+menuName+'.subs["'+name+'"].hide();over_out(this, "'+mAtt.bg_off+'", "'+mAtt.fg_off+'")');
	mainMenu.onmousedown = new Function('location.href = "'+url+'"');
	this.main[name] = new menuObj(mainMenu.id);
	this.mainNum[this.mainNum.length] = this.main[name];
	if(!hasSub) return;
	if(is.ns4) {
		var subC = new Layer(sAtt.width);
		subC.resizeTo(sAtt.width,0);
		subC.visibility = "hidden";
	}
	if(is.dom || is.iemac) {
		var subC = document.createElement("DIV");
		subC.id = name+menuName+"Sub";
		var wf = (is.ns6 || is.moz) ? 4 : 0;
		subC.style.cssText = styStr2;
		subC.setAttribute("style", styStr2);
		document.body.appendChild(subC);
	}
	if(is.ie4) {
		var sC = '<div id="'+name+menuName+'Sub" style="'+styStr2+'"></div>';
		document.body.insertAdjacentHTML("beforeEnd", sC);
		var subC = document.all[name+menuName+"Sub"];
	}
	this.subs[name] = new menuObj(subC.id, this.main[name]);
	subC.onmouseover = new Function(menuName+'.subs["'+name+'"].show("'+wipePos+'");');
	subC.onmouseout = new Function(menuName+'.subs["'+name+'"].hide();');
}
wipeMenu.prototype.addSub = function(name, parent, txt, url) {
	var pf2 = (mAtt.height%2 == 0) ? 1 : 0;
	var pf = Math.ceil(((sAtt.height-sAtt.font_size)/2)-2);
	var pd = "padding:0px 6px 0px 6px;";
	if(is.ns4) {
		var tempsub = new Layer(sAtt.width, this.subs[parent].lyr);
		var styStr = "text-decoration:none; font-weight:"+sAtt.font_weight+"; color:"+sAtt.fg_off+"; padding:"+((sAtt.height/2)-(sAtt.font_size/2)-2)+"px 0px 0px 0px; font-size:"+sAtt.font_size+"px; font-family:"+sAtt.font+";"
		tempsub.document.write('<div align="'+sAtt.align+'" style="'+pd+'"><a href="'+url+'" style="'+styStr+'">'+txt+'</a></div>');
		tempsub.document.close();
		tempsub.captureEvents(Event.MOUSEUP);
		tempsub.resizeTo(sAtt.width,sAtt.height);
		tempsub.moveTo(0,(sAtt.height*(this.subs[parent].lyr.document.layers.length-1)));
		if(sAtt.bg_off.indexOf("url") != -1) {
			tempsub.background.src = sAtt.bg_off.substring(4,sAtt.bg_off.length-1);
			tempsub.background.src = sAtt.bg_off.substring(4,sAtt.bg_off.length-1);
		} 
		else tempsub.bgColor = sAtt.bg_off;
		tempsub.visibility = "inherit";
	}
	if(is.dom || is.iemac) {
		var tempsub = document.createElement("DIV");
		var wf = (is.ns6 || is.moz || is.strict) ? 12+(sAtt.border*2) : 0;
		var styStr = "width:"+(sAtt.width-wf)+"px; font-weight:"+sAtt.font_weight+"; border:solid "+sAtt.border+"px "+sAtt.border_color+"; border-top-width:0px; color:"+sAtt.fg_off+";  text-align:"+sAtt.align+"; font-size:"+sAtt.font_size+"px; font-family:"+sAtt.font+"; padding:"+pf+"px 6px "+(pf+pf2)+"px 6px; background:"+sAtt.bg_off+"; cursor:pointer; cursor:hand;"
		tempsub.id = name+menuName+"SubItem";
		tempsub.innerHTML = txt;
		tempsub.style.cssText = styStr;
		tempsub.setAttribute("style", styStr);
		this.subs[parent].lyr.appendChild(tempsub);
	}
	if(is.ie4) {
		var wf =  12; 
		var styStr = "width:"+(sAtt.width-wf)+"px; font-weight:"+sAtt.font_weight+"; border:solid "+sAtt.border+"px "+sAtt.border_color+"; border-top-width:0px; color:"+sAtt.fg_off+"; text-align:"+sAtt.align+"; font-size:"+sAtt.font_size+"px; font-family:"+sAtt.font+"; padding:"+pf+"px 6px "+(pf+pf2)+"px 6px; background:"+sAtt.bg_off+"; cursor:pointer; cursor:hand;"
		var ts = '<div id="'+name+menuName+'SubItem" style="'+styStr+'">'+txt+'</div>';
		this.subs[parent].lyr.insertAdjacentHTML("beforeEnd", ts);
		tempsub = document.all[name+menuName+"SubItem"];
	}
		tempsub.onmouseover = new Function('over_out(this, "'+sAtt.bg_on+'", "'+sAtt.fg_on+'")');
		tempsub.onmouseout = new Function('over_out(this, "'+sAtt.bg_off+'", "'+sAtt.fg_off+'")');
		tempsub.onmousedown = new Function('location.href = "'+url+'"');
}
menuObj.prototype.show = function(p) {
 if (p == "h") {
  	this.sty.left = this.parent.offX()+css_px;
  	this.sty.top = this.parent.offY()+this.parent.offH()+css_px;
 } else if(p == "v") {
 	if(is.iemac) {
 	this.sty.left = this.parent.offX()+mAtt.width+css_px;
  this.sty.top = this.parent.offY()+(mAtt.height%2);
 	} else {
  this.sty.left = this.parent.offX()+this.parent.offW()+css_px;
  this.sty.top = this.parent.offY()+css_px;
 	}
 }
 this.sty.zIndex = "1";
 this.sty.visibility = "visible";
 this.doShow();
}
menuObj.prototype.doShow = function() {
	clearTimeout(this.timer);
	this.clipIt(0, this.offW(), this.wipe, 0);
	this.wipe += 10;
	if(this.wipe <= this.maxWipe()) this.timer = setTimeout(this.obj + ".doShow()", 40);
}
menuObj.prototype.hide = function() {
	clearTimeout(this.timer);
	if(is.ns4 || is.iemac) this.clipIt(0, this.offW(), this.wipe-10, 0);
	else this.clipIt(0, this.offW(), this.wipe, 0);
	this.wipe -= 10;
	if(this.wipe >= 0) this.timer = setTimeout(this.obj + ".hide()", 40);
	else this.sty.visibility = "hidden";
}
function over_out(obj, bg, fg) {
	if(is.ns4) {
		if(bg.indexOf("url") != -1) obj.background.src = bg.substring(4,bg.length-1)
		else obj.background.src = "", obj.bgColor = bg;
	}
	else {
		if(bg.indexOf("url") != -1) obj.style.backgroundImage = bg;
		else obj.style.backgroundColor = bg;
		obj.style.color = fg;
	}
}
menuObj.prototype.clipIt = function(t,r,b,l) {
	if(!is.ns4) this.sty.clip = "rect("+t+"px, "+r+"px, "+b+"px, "+l+"px)";
	else {
		this.sty.clip.top = t;
		this.sty.clip.right = r;
		this.sty.clip.bottom = b;
		this.sty.clip.left = l;
	}
}
wipeMenu.prototype.buildMenu = function(x,y,spacing) {
	this.mainNum[0].sty.left = x+css_px;
	this.mainNum[0].sty.top = y+css_px;
	if(!is.ns4 && spacing == 0) var spacing = -this.mAtt.border;
	for(i = 1; i < this.mainNum.length; i++) {
		if(this.pos == "h") {
			this.mainNum[i].sty.left = this.mainNum[i-1].offX()+this.mainNum[i-1].offW()+spacing+css_px;
			this.mainNum[i].sty.top = this.mainNum[i-1].offY()+css_px;
		} else {
			this.mainNum[i].sty.left = this.mainNum[i-1].offX()+css_px;
			this.mainNum[i].sty.top = this.mainNum[i-1].offY()+this.mainNum[i-1].offH()+spacing+css_px;
	}
	}
}

function wipeMenu(menu, p, ma, sa) {
    this.name = menu;
    this.pos = p;
    this.mAtt = ma;
    this.sAtt = (!sa) ? ma : sa;
    this.main = [];
    this.mainNum = [];
    this.subs = [];
}
function wipeMenu(menu, p, ma, sa) {
    this.name = menu;
    this.pos = p;
    this.mAtt = ma;
    this.sAtt = (!sa) ? ma : sa;
    this.main = [];
    this.mainNum = [];
    this.subs = [];
}
function macGo(){
 if (is.iemac){history.go(0);}
}
  if(document.layers) { 
var pX = innerWidth;
var pY = innerHeight; 
	onresize= function(){ 
		if(pX!= innerWidth || pY!= innerHeight) history.go(0);}
}
image1 = new Image()
image1.src = "images/graybutdot.gif"
image2 = new Image()
image2.src = "images/graybut10.gif"
image3 = new Image()
image3.src = "images/graybutdot.gif"
image4 = new Image()
image4.src = "images/graybut10.gif"
//M2Preload
//FinishM2

function initSwipeMenu() {
	hmenu1Att = new Array();
	hmenu1Att["width"] = 50,
	hmenu1Att["height"] = 16,
	hmenu1Att["align"] = "left";
	hmenu1Att["font"] = "Arial";
	hmenu1Att["font_size"] = 12;
	hmenu1Att["font_weight"] = "normal";
	hmenu1Att["fg_off"] = "#99cccc";
	hmenu1Att["fg_on"] = "#99cccc";
	hmenu1Att["border"] = 0;
	hmenu1Att["border_color"] = "#341145";



	hmenu1SubAtt = new Array();
	hmenu1SubAtt["width"] = 141,
	hmenu1SubAtt["height"] = 18,
	hmenu1SubAtt["align"] = "left";
	hmenu1SubAtt["font"] = "Arial";
	hmenu1SubAtt["font_size"] = 11;
	hmenu1SubAtt["font_weight"] = "normal";
	hmenu1SubAtt["bg_off"] = "#bbbbff";
	hmenu1SubAtt["bg_on"] = "#b9e1fd";
	hmenu1SubAtt["fg_off"] = "#000000";
	hmenu1SubAtt["fg_on"] = "#000c63";
	hmenu1SubAtt["border"] = 1;
	hmenu1SubAtt["border_color"] = "#ffffff";
	
	
	
	
	

hmenu1 = new wipeMenu("hmenu1", "h", hmenu1Att, hmenu1SubAtt);



	hmenu2Att = new Array();
	hmenu2Att["width"] = 135,
	hmenu2Att["height"] = 16,
	hmenu2Att["align"] = "center";
	hmenu2Att["font"] = "Arial";
	hmenu2Att["font_size"] = 12;
	hmenu2Att["font_weight"] = "normal";
	hmenu2Att["fg_off"] = "#99cccc";
	hmenu2Att["fg_on"] = "#99cccc";
	hmenu2Att["border"] = 0;
	hmenu2Att["border_color"] = "#341145";



	hmenu2SubAtt = new Array();
	hmenu2SubAtt["width"] = 141,
	hmenu2SubAtt["height"] = 18,
	hmenu2SubAtt["align"] = "left";
	hmenu2SubAtt["font"] = "Arial";
	hmenu2SubAtt["font_size"] = 11;
	hmenu2SubAtt["font_weight"] = "normal";
	hmenu2SubAtt["bg_off"] = "#bbbbff";
	hmenu2SubAtt["bg_on"] = "#b9e1fd";
	hmenu2SubAtt["fg_off"] = "#000000";
	hmenu2SubAtt["fg_on"] = "#000c63";
	hmenu2SubAtt["border"] = 1;
	hmenu2SubAtt["border_color"] = "#ffffff";
	
	
	
	
	

hmenu2 = new wipeMenu("hmenu2", "h", hmenu2Att, hmenu2SubAtt);



	hmenu4Att = new Array();
	hmenu4Att["width"] = 60,
	hmenu4Att["height"] = 16,
	hmenu4Att["align"] = "center";
	hmenu4Att["font"] = "Arial";
	hmenu4Att["font_size"] = 12;
	hmenu4Att["font_weight"] = "normal";
	hmenu4Att["fg_off"] = "#99cccc";
	hmenu4Att["fg_on"] = "#99cccc";
	hmenu4Att["border"] = 0;
	hmenu4Att["border_color"] = "#341145";



	hmenu4SubAtt = new Array();
	hmenu4SubAtt["width"] = 141,
	hmenu4SubAtt["height"] = 18,
	hmenu4SubAtt["align"] = "left";
	hmenu4SubAtt["font"] = "Arial";
	hmenu4SubAtt["font_size"] = 11;
	hmenu4SubAtt["font_weight"] = "normal";
	hmenu4SubAtt["bg_off"] = "#bbbbff";
	hmenu4SubAtt["bg_on"] = "#b9e1fd";
	hmenu4SubAtt["fg_off"] = "#000000";
	hmenu4SubAtt["fg_on"] = "#000c63";
	hmenu4SubAtt["border"] = 1;
	hmenu4SubAtt["border_color"] = "#ffffff";
	
	
	
	
	

hmenu4 = new wipeMenu("hmenu4", "h", hmenu4Att, hmenu4SubAtt);



	hmenu3Att = new Array();
	hmenu3Att["width"] = 150,
	hmenu3Att["height"] = 16,
	hmenu3Att["align"] = "center";
	hmenu3Att["font"] = "Arial";
	hmenu3Att["font_size"] = 12;
	hmenu3Att["font_weight"] = "normal";
	hmenu3Att["fg_off"] = "#99cccc";
	hmenu3Att["fg_on"] = "#99cccc";
	hmenu3Att["border"] = 0;
	hmenu3Att["border_color"] = "#341145";



	hmenu3SubAtt = new Array();
	hmenu3SubAtt["width"] = 141,
	hmenu3SubAtt["height"] = 18,
	hmenu3SubAtt["align"] = "left";
	hmenu3SubAtt["font"] = "Arial";
	hmenu3SubAtt["font_size"] = 11;
	hmenu3SubAtt["font_weight"] = "normal";
	hmenu3SubAtt["bg_off"] = "#bbbbff";
	hmenu3SubAtt["bg_on"] = "#b9e1fd";
	hmenu3SubAtt["fg_off"] = "#000000";
	hmenu3SubAtt["fg_on"] = "#000c63";
	hmenu3SubAtt["border"] = 1;
	hmenu3SubAtt["border_color"] = "#ffffff";
	
	
	
	
	

hmenu3 = new wipeMenu("hmenu3", "h", hmenu3Att, hmenu3SubAtt);


	hmenu5Att = new Array();
	hmenu5Att["width"] = 120,
	hmenu5Att["height"] = 16,
	hmenu5Att["align"] = "center";
	hmenu5Att["font"] = "Arial";
	hmenu5Att["font_size"] = 12;
	hmenu5Att["font_weight"] = "normal";
	hmenu5Att["fg_off"] = "#99cccc";
	hmenu5Att["fg_on"] = "#99cccc";
	hmenu5Att["border"] = 0;
	hmenu5Att["border_color"] = "#341145";



	hmenu5SubAtt = new Array();
	hmenu5SubAtt["width"] = 141,
	hmenu5SubAtt["height"] = 18,
	hmenu5SubAtt["align"] = "left";
	hmenu5SubAtt["font"] = "Arial";
	hmenu5SubAtt["font_size"] = 11;
	hmenu5SubAtt["font_weight"] = "normal";
	hmenu5SubAtt["bg_off"] = "#bbbbff";
	hmenu5SubAtt["bg_on"] = "#b9e1fd";
	hmenu5SubAtt["fg_off"] = "#000000";
	hmenu5SubAtt["fg_on"] = "#000c63";
	hmenu5SubAtt["border"] = 1;
	hmenu5SubAtt["border_color"] = "#ffffff";
	
	
	
	
	

hmenu5 = new wipeMenu("hmenu5", "h", hmenu5Att, hmenu5SubAtt);



	hmenu6Att = new Array();
	hmenu6Att["width"] = 45,
	hmenu6Att["height"] = 16,
	hmenu6Att["align"] = "center";
	hmenu6Att["font"] = "Arial";
	hmenu6Att["font_size"] = 12;
	hmenu6Att["font_weight"] = "normal";
	hmenu6Att["fg_off"] = "#B6F2FC";
	hmenu6Att["fg_on"] = "#B6F2FC";
	hmenu6Att["border"] = 0;
	hmenu6Att["border_color"] = "#341145";



	hmenu6SubAtt = new Array();
	hmenu6SubAtt["width"] = 141,
	hmenu6SubAtt["height"] = 18,
	hmenu6SubAtt["align"] = "left";
	hmenu6SubAtt["font"] = "Arial";
	hmenu6SubAtt["font_size"] = 11;
	hmenu6SubAtt["font_weight"] = "normal";
	hmenu6SubAtt["bg_off"] = "#bbbbff";
	hmenu6SubAtt["bg_on"] = "#b9e1fd";
	hmenu6SubAtt["fg_off"] = "#000000";
	hmenu6SubAtt["fg_on"] = "#000c63";
	hmenu6SubAtt["border"] = 1;
	hmenu6SubAtt["border_color"] = "#ffffff";
	
	
	
	
	

hmenu6 = new wipeMenu("hmenu6", "h", hmenu6Att, hmenu6SubAtt);

//MenuTypeEnd
//xMenu4End
//xMenu5
hmenu1.addMain("Menu1", true, "Home", "index.html");
//xMenu5End
//xMenu1
hmenu2.addMain("Menu1", true, "SenSysNet Overview", "sensysnet1.html");
hmenu2.addSub("Menu1Sub1", "Menu1","Sensor Overview", "sensysnet1.html#sensoroverview");
hmenu2.addSub("Menu4Sub2", "Menu1", "Demonstrations", "sensysnet1.html#onsitedemonstrations");
//xMenu1End
//xMenu2
hmenu3.addMain("Menu2", true, "Intelligent Chip System", "sensysnet2.html");

hmenu3.addSub("Menu2Sub1", "Menu2", "Smart Gaming Table", "sensysnet2.html#smartgamingtable");
hmenu3.addSub("Menu3Sub2", "Menu2", "Player Tracking", "sensysnet2.html#playertracking");
hmenu3.addSub("Menu3Sub3", "Menu2", "Work Station Automation", "sensysnet2.html#workstationautomation");
hmenu3.addSub("Menu3Sub4", "Menu2", "Player Loyalty", "sensysnet2.html#playerloyalty");
hmenu3.addSub("Menu3Sub5", "Menu2", "Data Capture Storage", "sensysnet2.html#datacapturestorage");
hmenu3.addSub("Menu3Sub6", "Menu2", "Business Process Management", "sensysnet2.html#businessprocessmanagement")
//xMenu2End
//xMenu3
hmenu4.addMain("Menu3", true, "Security", "sensysnet3.html");
hmenu4.addSub("Menu3Sub1", "Menu3", "Eclipse Server", "sensysnet3.html#1");
hmenu4.addSub("Menu3Sub2", "Menu3", "Counterfeiting", "sensysnet3.html#playertracking");
hmenu4.addSub("Menu3Sub3", "Menu3", "Theft Prevention", "sensysnet3.html#workstationautomation");
hmenu4.addSub("Menu3Sub4", "Menu3", "Doorway Sensors", "sensysnet3.html#playerloyalty");
hmenu4.addSub("Menu3Sub5", "Menu3", "Employee Badge System", "sensysnet3.html#datacapturestorage");
hmenu4.addSub("Menu3Sub6", "Menu3", "Business Intelligence", "sensysnet3.html#businessprocessmanagement");
//;xMenu3End//
//xMenu4
hmenu5.addMain("Menu4", true, "Contact Information", "sensysnet4.html");

hmenu5.addSub("Menu3Sub2", "Menu4", "Privacy Policy", "sensysnet4.html#pp");
//hmenu1.addSub("Menu3Sub3", "Menu4", "Call Us", "#.html");
hmenu6.addMain("Menu6", true, "News", "news.html");

hmenu1.buildMenu(19,80,0)
hmenu6.buildMenu(90,80,0)
hmenu2.buildMenu(155,80,0)
hmenu3.buildMenu(300,80,0)
hmenu4.buildMenu(460,80,0)
hmenu5.buildMenu(530,80,0);

}

//Additional
//SwipeMenuEnd/* CSS Document */

