////////////////////////////////////////////////
//  DHTML MENU BUILDER 2.6.523                //
//  (c)xFX JumpStart                          //
//                                            //
//  PSN: 1D8F-099400-XFX-2346                 //
//                                            //
//  GENERATED: 11/13/2000 - 12:14:26 AM       //
////////////////////////////////////////////////


	var nStyle = new Array;
	var hStyle = new Array;
	var nLayer = new Array;
	var hLayer = new Array;
	var nTCode = new Array;

	var AnimStep = 0;
	var AnimHnd = 0;
	var HTHnd = new Array;
	var DoFormsTweak = true;

	var mFrame;
	var cFrame;

	var OpenMenus = new Array;
	var SelCommand;
	var nOM = 0;

	var mX;
	var mY;
	var xOff = 0;

	var HideSpeed = 300;

var BV=parseInt(navigator.appVersion);
var BN=window.navigator.appName;
var IsMac=(navigator.userAgent.indexOf('Mac')!=-1)?true:false;
var Opera=(navigator.userAgent.indexOf('Opera')!=-1)?true:false;
var NS=(BN.indexOf('Netscape')!=-1&&(BV==4)&&!Opera)?true:false;
var IE=(BN.indexOf('Explorer')!=-1&&(BV>=4)&&!Opera)?true:false;


	if (IsMac) {
		frames.self = window;
		frames.top = top;
	}

	if(IE)
		xOff = 2;
	cFrame = eval(frames['self']);

	var fx = 2;



	nStyle[0]="border: 1px;  font-family: Verdana; font-size: 8pt; font-weight: none; font-style: none; color: #FFFFFF; background-color: #000000; cursor: hand";
	hStyle[0]="border: 1px;  font-family: Verdana; font-size: 8pt; font-weight: none; font-style: none; color: #000000; background-color: #808080; cursor: hand;";
	nStyle[1]="border: 1px;  font-family: Verdana; font-size: 8pt; font-weight: none; font-style: none; color: #FFFFFF; background-color: #000000; cursor: hand";
	hStyle[1]="border: 1px;  font-family: Verdana; font-size: 8pt; font-weight: none; font-style: none; color: #000000; background-color: #808080; cursor: hand;";
	nStyle[2]="border: 1px;  font-family: Verdana; font-size: 8pt; font-weight: none; font-style: none; color: #FFFFFF; background-color: #000000; cursor: hand";
	hStyle[2]="border: 1px;  font-family: Verdana; font-size: 8pt; font-weight: none; font-style: none; color: #000000; background-color: #808080; cursor: hand;";
	nStyle[3]="border: 1px;  font-family: Verdana; font-size: 8pt; font-weight: none; font-style: none; color: #FFFFFF; background-color: #000000; cursor: hand";
	hStyle[3]="border: 1px;  font-family: Verdana; font-size: 8pt; font-weight: none; font-style: none; color: #000000; background-color: #808080; cursor: hand;";
	nTCode[1]="frames[\'self\'].execURL(\'designdev.cfm\', \'frames[self]\');";
	nLayer[1]="<p align=left><font face=Verdana point-size=8 color=#FFFFFF>Web Design and Development</font>";
	hLayer[1]="<p align=left><font face=Verdana point-size=8 color=#000000>Web Design and Development</font>";
	nTCode[2]="frames[\'self\'].execURL(\'ebusiness.cfm\', \'frames[self]\');";
	nLayer[2]="<p align=left><font face=Verdana point-size=8 color=#FFFFFF>eBusiness</font>";
	hLayer[2]="<p align=left><font face=Verdana point-size=8 color=#000000>eBusiness</font>";
	nTCode[3]="frames[\'self\'].execURL(\'search.cfm\', \'frames[self]\');";
	nLayer[3]="<p align=left><font face=Verdana point-size=8 color=#FFFFFF>Search Engine Positioning</font>";
	hLayer[3]="<p align=left><font face=Verdana point-size=8 color=#000000>Search Engine Positioning</font>";
	nTCode[4]="frames[\'self\'].execURL(\'content.cfm\', \'frames[self]\');";
	nLayer[4]="<p align=left><font face=Verdana point-size=8 color=#FFFFFF>Content Management</font>";
	hLayer[4]="<p align=left><font face=Verdana point-size=8 color=#000000>Content Management</font>";


	function GetCurCmd() {
//IE
//This function will return the current command under the mouse pointer.
//It will return null if the mouse is not over any command.
//------------------------------
//Version 1.3
//
		var cc = mFrame.window.event.srcElement;
		while((cc.id=="") && (cc.tagName!="TD")) {
			cc = cc.parentElement;
			if(cc==null)
				break;
		}
		return cc;
	}

	function HoverSel(mode, imgLName, imgRName) {
//IE
//This is the function called every time the mouse pointer is moved over a command.
//------------------------------
//mode: 0 if the mouse is moving over the command and 1 if is moving away.
//imgLName: Name of the left image object, if any.
//imgRName: Name of the right image object, if any.
//------------------------------
//Version 9.3
//
		var imgL = new Image;
		var imgLRsc = new Image;
		var imgR = new Image;
		var imgRRsc = new Image;
		var mc;

		if(mode==0 && OpenMenus[nOM].SelCommand!=null)
			HoverSel(1);

		if(imgLName!="_")
			var imgL = eval("mFrame.document.images['"+imgLName+"']");
		if(imgRName!="_")
			var imgR = eval("mFrame.document.images['"+imgRName+"']");

		if(mode==0) {
			mc = GetCurCmd();
			if(nOM>1)
				if(mc==OpenMenus[nOM-1].SelCommand)
					return false;
			if(OpenMenus[nOM].SelCommand || nOM>1)
				while(!InMenu())
					Hide();
			mc.style.cssText = hStyle[mc.id];
			if(imgLName!='_') imgLRsc = eval(imgLName+"On");
			if(imgRName!='_') imgRRsc = eval(imgRName+"On");
			OpenMenus[nOM].SelCommand = mc;
			OpenMenus[nOM].SelCommandPar = [imgLName,imgRName];
		} else {
			mc = (mode==1)?OpenMenus[nOM].SelCommand:OpenMenus[nOM].Opener;
			imgLName = (mode==1)?OpenMenus[nOM].SelCommandPar[0]:OpenMenus[nOM].OpenerPar[0];
			imgRName = (mode==1)?OpenMenus[nOM].SelCommandPar[1]:OpenMenus[nOM].OpenerPar[1];
			mc.style.background = "";
			mc.style.cssText = nStyle[mc.id];
			if(imgLName!='_') imgLRsc = eval(imgLName+"Off");
			if(imgRName!='_') imgRRsc = eval(imgRName+"Off");
			window.status = "";
			OpenMenus[nOM].SelCommand = null;			
		}

		if(imgLName!='_') {
			imgL = eval("mFrame.document.images."+imgLName);
			imgL.src = imgLRsc.src;
		}
		if(imgRName!='_') {
			imgR = eval("mFrame.document.images."+imgRName);
			imgR.src = imgRRsc.src;
		}

		return true;
	}

	function NSHoverSel(mode, mc, bcolor, w, h) {
//NS
//This is the function called every time the mouse pointer is moved over or away from a command.
//------------------------------
//mode: 0 if the mouse is moving over the command and 1 if is moving away.
//mc: Name of the layer that corresponds to the selected command.
//n: Unique ID that identifies this command. Used to retrieve the data from the nLayer or hLayer array.
//bcolor: Background color of the command. Ignored if the group uses a background image.
//w: Width of the command's layer.
//h: Height of the command's layer.
//------------------------------
//Version 10.5
//
		var n;
		var LayerHTM;
		if(mode==0 && OpenMenus[nOM].SelCommand!=null)
			NSHoverSel(1);
		
		if(mode==0) {
			n = CBparseInt(mc.name.substr(2));
			if(nOM>1)
				if(mc==OpenMenus[nOM-1].SelCommand)
					return false;
			while(!InMenu())
				Hide();
			LayerHTM = hLayer[n];
			OpenMenus[nOM].SelCommand = mc;
			OpenMenus[nOM].SelCommandPar = [mc.bgColor,w,h];
			mc.bgColor = bcolor;
		} else {
			mc = (mode==1)?OpenMenus[nOM].SelCommand:OpenMenus[nOM].Opener;
			bcolor = (mode==1)?OpenMenus[nOM].SelCommandPar[0]:OpenMenus[nOM].OpenerPar[0];
			w = (mode==1)?OpenMenus[nOM].SelCommandPar[1]:OpenMenus[nOM].OpenerPar[1];
			h = (mode==1)?OpenMenus[nOM].SelCommandPar[2]:OpenMenus[nOM].OpenerPar[2];
			n = CBparseInt(mc.name.substr(2));
			LayerHTM = nLayer[n];
			if(mc.parentLayer.background.src!="")
				mc.bgColor = null;
			else
				mc.bgColor = bcolor;
			window.status = "";
			OpenMenus[nOM].SelCommand = null;
		}
		mc.resizeTo(w,h);
		mc.document.open();
		mc.document.write(LayerHTM);
		mc.document.close();

		return true;
	}

	function Hide() {
//IE,NS
//This function hides the last opened group and it keeps hiding all the groups until
//no more groups are opened or the mouse is over one of them.
//Also takes care of reseting any highlighted commands.
//------------------------------
//Version 3.5
//
		window.clearTimeout(HTHnd[nOM]);HTHnd[nOM] = 0;
		window.clearTimeout(AnimHnd);AnimHnd = 0;

		if(OpenMenus[nOM].SelCommand!=null) {
			if(IE) HoverSel(1);
			if(NS) NSHoverSel(1);
		}
		if(OpenMenus[nOM].Opener!=null) {
			if(IE) HoverSel(3);
			if(NS) NSHoverSel(3);
		}

		OpenMenus[nOM].visibility = "hidden";
		nOM--;

		if(nOM>0)
			if(!InMenu())
				HTHnd[nOM] = window.setTimeout("Hide()", HideSpeed/4);

		if(nOM==0)
			FormsTweak("visible");
	}

	function ShowMenu(mName, x, y, isCascading) {
//IE,NS
//This is the main function to show the menus when a hotspot is triggered or a cascading command is activated.
//------------------------------
//mName: Name of the <div> or <layer> to be shown.
//x: Left position of the menu.
//y: Top position of the menu.
//isCascading: True if the menu has been triggered from a command, and not from a hotspot.
//------------------------------
//Version 14.2
//
		window.clearTimeout(HTHnd[nOM]);HTHnd[nOM] = 0;
		x = CBparseInt(x);y = CBparseInt(y);
		
		if(AnimHnd && nOM>0) {
			AnimStep=100;
			Animate();
		}
		if(IE)
			var Menu = mFrame.document.all[mName];
		if(NS)
			var Menu = mFrame.document.layers[mName];
		if(!Menu)
			return false;
		if(IE)
			Menu = Menu.style;
		if(Menu==OpenMenus[nOM])
			return false;
			
		if(!isCascading)
			HideAll();
			
		Menu.Opener = nOM>0?OpenMenus[nOM].SelCommand:null;
		Menu.OpenerPar = nOM>0?OpenMenus[nOM].SelCommandPar:null;
		Menu.SelCommand = null;

		var pW = GetWidthHeight()[0] + GetLeftTop()[0];
		var pH = GetWidthHeight()[1] + GetLeftTop()[1];
		
		if(IE) {
			if(isCascading) {
				x = CBparseInt(OpenMenus[nOM].left) + CBparseInt(OpenMenus[nOM].width) - 6;
				y = y + CBparseInt(OpenMenus[nOM].top) - 5;
				Menu.left = (x+CBparseInt(Menu.width)>pW)?CBparseInt(OpenMenus[nOM].left) - CBparseInt(Menu.width) + 6:x;
				Menu.top =  (y+CBparseInt(Menu.height)>pH)?pH - CBparseInt(Menu.height):y;
			} else {
				Menu.left = (x+CBparseInt(Menu.width)>pW)?pW - CBparseInt(Menu.width):x;
				Menu.top =  (y+CBparseInt(Menu.height)>pH)?pH - CBparseInt(Menu.height):y;
			}
			if(!IsMac)
				Menu.clip = "rect(0 0 0 0)";
		}
		if(NS) {
			if(isCascading) {
				x = OpenMenus[nOM].left + OpenMenus[nOM].clip.width - 6;
				y = OpenMenus[nOM].top + OpenMenus[nOM].SelCommand.top;
				x = (x+Menu.w>pW)?OpenMenus[nOM].left - Menu.w + 6:x;
				y = (y+Menu.h>pH)?pH - Menu.h:y;
			} else {
				x = (x+Menu.w>pW)?pW - Menu.w:x;
				y = (y+Menu.h>pH)?pH - Menu.h:y;
			}
			Menu.clip.width = 0;
			Menu.clip.height = 0;
			Menu.moveToAbsolute(x,y);
		}
		if(isCascading)
			Menu.zIndex = CBparseInt(OpenMenus[nOM].zIndex) + 1;
		Menu.visibility = "visible";
		OpenMenus[++nOM] = Menu;
		HTHnd[nOM] = 0;
		if((IE && !IsMac) || NS)
			AnimHnd = window.setTimeout("Animate()", 10);
		FormsTweak("hidden");

		return true;
	}

	function Animate() {
//IE,NS
//This function is called by ShowMenu every time a new group must be displayed and produces the predefined unfolding effect.
//Currently is disabled for Navigator, because of some weird bugs we found with the clip property of the layers.
//------------------------------
//Version 1.9
//
		var r = '';
		var nw = nh = 0;
		switch(fx) {
			case 1:
				if(IE) r = "0 " + AnimStep + "% " + AnimStep + "% 0";
				if(NS) nw = AnimStep; nh = AnimStep;
				break;
			case 2:
				if(IE) r = "0 100% " + AnimStep + "% 0";
				if(NS) nw = 100; nh = AnimStep;
				break;
			case 3:
				if(IE) r = "0 " + AnimStep + "% 100% 0";
				if(NS) nw = AnimStep; nh = 100;
				break;
			case 0:
				if(IE) r = "0 100% 100% 0";
				if(NS) nw = 100; nh = 100;
				break;
		}
		if(!OpenMenus[nOM]) return false;
		with(OpenMenus[nOM]) {
			if(IE)
				clip =  "rect(" + r + ")";
			if(NS) {
				clip.width = w*(nw/100);
				clip.height = h*(nh/100);
			}
		}
		AnimStep += 20;
		if(AnimStep<=100)
			AnimHnd = window.setTimeout("Animate()",25);
		else {
			window.clearTimeout(AnimHnd);
			AnimStep = 0;
			AnimHnd = 0;
		}
	}
	
	function InMenu() {
//IE,NS
//This function returns true if the mouse pointer is over the last opened menu.
//------------------------------
//Version 1.6
//
		var m = OpenMenus[nOM];
		if(!m)
			return false;
		if(IE&&BV==4)
			SetPointerPos();
		var l = CBparseInt(m.left) + xOff;
		var r = l+((IE)?CBparseInt(m.width):m.clip.width) - xOff;
		var t = CBparseInt(m.top) + xOff;
		var b = t+((IE)?CBparseInt(m.height):m.clip.height) - xOff;
		return ((mX>=l && mX<=r) && (mY>=t && mY<=b));
	}

	function SetPointerPos(e) {
//IE,NS
//This function sets the mX and mY variables with the current position of the mouse pointer.
//------------------------------
//e: Only used under Navigator, corresponds to the Event object.
//------------------------------
//Version 1.0
//
		if(IE) {
			if(mFrame!=cFrame||event==null)
				if(mFrame.window.event==null)
					return;
				else
					e = mFrame.window.event;
			else
				e = event;
			mX = e.clientX + mFrame.document.body.scrollLeft;
			mY = e.clientY + mFrame.document.body.scrollTop;
		}
		if(NS) {
			mX = e.pageX;
			mY = e.pageY;
		}
	}
	

	function HideMenus(e) {
//IE,NS
//This function checks if the mouse pointer is on a valid position and if the current menu should be kept visible.
//The function is called every time the mouse pointer is moved over the document area.
//------------------------------
//e: Only used under Navigator, corresponds to the Event object.
//------------------------------
//Version 24.3
//
		SetPointerPos(e);
		if(nOM>0)
			if(OpenMenus[nOM].SelCommand!=null)
				while(!InMenu() && !HTHnd[nOM]) {
					HTHnd[nOM] = window.setTimeout("Hide()", HideSpeed);
					if(nOM==0)
						break;
				}
	}
	
	function FormsTweak(state) {
//IE
//This is an undocumented function, which can be used to hide every listbox (or combo) element on a page.
//This can be useful if the menus will be displayed over an area where is a combo box, which is an element that cannot be placed behind the menus and it will always appear over the menus resulting in a very undesirable effect.
//------------------------------
//Version 2.0
//
		if(DoFormsTweak && IE)
			for(var f = 0; f <= (mFrame.document.forms.length - 1); f++)
				for(var e = 0; e <= (mFrame.document.forms[f].elements.length - 1); e++)
					if(mFrame.document.forms[f].elements[e].type=="select-one")
						mFrame.document.forms[f].elements[e].style.visibility = state;
	}

	function execURL(url, tframe) {
//IE,NS
//This function is called every time a command is triggered to jump to another page or execute some javascript code.
//------------------------------
//url: Encrypted URL that must be opened or executed.
//tframe: If the url is a document location, tframe is the target frame where this document will be opened.
//------------------------------
//Version 1.1
//
		HideAll();
		window.setTimeout("execURL2('" + url + "', '" + tframe + "')", 100);
	}

	function execURL2(url, tframe) {
//IE,NS
//This function is called every time a command is triggered to jump to another page or execute some javascript code.
//------------------------------
//url: Encrypted URL that must be opened or executed.
//tframe: If the url is a document location, tframe is the target frame where this document will be opened.
//------------------------------
//Version 1.0
//
		tframe = rStr(tframe);
		var fObj = eval(tframe);
		url = rStr(url);
		if(url.indexOf("javascript")!=url.indexOf("vbscript"))
			eval(url);
		else
			fObj.location.href = url;
	}

	function rStr(s) {
//IE,NS
//This function is used to decrypt the URL parameter from the triggered command.
//------------------------------
//Version 1.1
//
		s = xrep(s,"\x1E","'");
		s = xrep(s,"\x1D","\x22");
		s = xrep(s,"\x1C",",");
		return s;
	}

	function xrep(s, f, n) {
//IE,NS
//This function looks for any occurrence of the f string and replaces it with the n string.
//------------------------------
//Version 1.0
//
		var tmp = s.split(f);
		return tmp.join(n);
	}

	function hNSCClick(e) {
//NS
//This function executes the selected command's trigger code.
//------------------------------
//Version 1.0
//
		eval(this.TCode);
	}
	
	function CBparseInt(n) {
//NS
//This function fixes a bug in Navigator's parseInt() function for the Mac.
//------------------------------
//Version 1.0
//
		return IsMac?n*1:parseInt(n)*1;
	}

	function HideAll() {
//IE,NS
//This function will hide all the currently opened menus.
//------------------------------
//Version 1.0
//
		while(nOM>0)
			Hide();
	}

	function GetLeftTop() {
//IE,NS
//This function returns the scroll bars position on the menus frame.
//------------------------------
//Version 1.0
//
		if(IE)
			return [mFrame.document.body.scrollLeft,mFrame.document.body.scrollTop];
		if(NS)
			return [mFrame.pageXOffset,mFrame.pageYOffset];
	}
	
	function tHideAll() {
//IE,NS
//This function is called when the mouse is moved away from a hotspot to close any opened menu.
//------------------------------
//Version 1.0
//
		HTHnd[nOM] = window.setTimeout("if(!InMenu()&&nOM==1)HideAll(); else HTHnd[nOM]=0;", HideSpeed);
	}

	function GetWidthHeight() {
//IE,NS
//This function returns the width and height of the menus frame.
//------------------------------
//Version 1.0
//
		if(IE)
			return [mFrame.document.body.clientWidth,mFrame.document.body.clientHeight];
		if(NS)
			return [mFrame.innerWidth,mFrame.innerHeight];
	}

	function SetUpEvents() {
//IE,NS
//This function initializes the frame variables and setups the event handling.
//------------------------------
//Version 1.4
//
		onerror = errHandler;
		if(typeof(mFrame)=="undefined")
		mFrame = eval(frames['self']);
		if(typeof(mFrame)=="undefined")
			window.setTimeout("SetUpEvents()",10);
		else {
			if(IE)
				mFrame.document.onmousemove = HideMenus;
			if(NS) {
				mFrame.window.captureEvents(Event.MOUSEMOVE);
				mFrame.window.onmousemove = HideMenus;
				PrepareEvents();
			}
		}
	}
	
	function errHandler(sMsg,sUrl,sLine) {
//IE,NS
//This function will trap any errors generated by the scripts and filter the unhandled ones.
//------------------------------
//Version 1.0
//
		if(sMsg.substr(0,16)!="Access is denied"&&sMsg!="Permission denied")
			alert("DHTML Menu Builder Java Script Error\n" +
			      "\nDescription: " + sMsg +
			      "\nSource: " + sUrl +
			      "\nLine: "+sLine);
		return true;
	}

	function PrepareEvents() {
//NS
//This function is called right after the menus are rendered.
//It has been designed to attach the OnClick event to the <layer> tag. This is being
//done this way because Navigator does not support a click inline event capturing on
//the layer tag... duh!
//------------------------------
//Version 2.1
//
		for(var l=0; l<mFrame.document.layers.length; l++) {
			var lo = mFrame.document.layers[l];
			lo.w = lo.clip.width;
			lo.h = lo.clip.height;
			for(var sl=0; sl<lo.layers.length; sl++) {
				var slo = mFrame.document.layers[l].layers[sl];
				if(slo.name.indexOf("EH")>0) {
					slo.document.captureEvents(Event.CLICK);
					slo.document.onclick = hNSCClick;
					slo.document.TCode = nTCode[slo.name.split("EH")[1]];
				}					
			}
		}
	}

	if(IE)
		with(document) {
			open();
			write("<div id=\"Home\" style=\"position: absolute; top: 0%; left: 0%; width: 2; height: 2; z-index: 100; visibility: hidden;\"><table id=\"dmbMenu\" background=\"\" border=\"0\" cellpadding=\"1\" style=\"background-color: #000000; color: #000000; border-left: #E0E0E0 solid 0; border-right: 0 solid #808080; border-top: 0 solid #E0E0E0; border-bottom: 0 solid #808080\" width=\"2\"></table></div><div id=\"Services\" style=\"position: absolute; top: 0%; left: 0%; width: 193; height: 80; z-index: 100; visibility: hidden;\"><table id=\"dmbMenu\" background=\"\" border=\"0\" cellpadding=\"1\" style=\"background-color: #000000; color: #000000; border-left: #E0E0E0 solid 1; border-right: 1 solid #808080; border-top: 1 solid #E0E0E0; border-bottom: 1 solid #808080\" width=\"193\"><tr><td nowrap height=17 align=\"left\" style=\"border: 1px; font-family: Verdana; font-size: 8pt; font-weight: none; font-style: none; color: #FFFFFF; cursor: hand; background-color: #000000;\" id=0 OnMouseOver=\"frames[\'self\'].HoverSel(0,\'_\',\'_\');window.status=\'Web Design and Development\';\" OnClick=\"frames[\'self\'].execURL(\'designdev.cfm\', \'frames[self]\');\">Web Design and Development</td></tr><tr><td nowrap height=17 align=\"left\" style=\"border: 1px; font-family: Verdana; font-size: 8pt; font-weight: none; font-style: none; color: #FFFFFF; cursor: hand; background-color: #000000;\" id=1 OnMouseOver=\"frames[\'self\'].HoverSel(0,\'_\',\'_\');window.status=\'eBusiness\';\" OnClick=\"frames[\'self\'].execURL(\'ebusiness.cfm\', \'frames[self]\');\">eBusiness</td></tr><tr><td nowrap height=17 align=\"left\" style=\"border: 1px; font-family: Verdana; font-size: 8pt; font-weight: none; font-style: none; color: #FFFFFF; cursor: hand; background-color: #000000;\" id=2 OnMouseOver=\"frames[\'self\'].HoverSel(0,\'_\',\'_\');window.status=\'Search Engine Positioning\';\" OnClick=\"frames[\'self\'].execURL(\'search.cfm\', \'frames[self]\');\">Search Engine Positioning</td></tr><tr><td nowrap height=17 align=\"left\" style=\"border: 1px; font-family: Verdana; font-size: 8pt; font-weight: none; font-style: none; color: #FFFFFF; cursor: hand; background-color: #000000;\" id=3 OnMouseOver=\"frames[\'self\'].HoverSel(0,\'_\',\'_\');window.status=\'Content Management\';\" OnClick=\"frames[\'self\'].execURL(\'content.cfm\', \'frames[self]\');\">Content Management</td></tr></table></div><div id=\"Samples\" style=\"position: absolute; top: 0%; left: 0%; width: 2; height: 2; z-index: 100; visibility: hidden;\"><table id=\"dmbMenu\" background=\"\" border=\"0\" cellpadding=\"1\" style=\"background-color: #000000; color: #000000; border-left: #E0E0E0 solid 0; border-right: 0 solid #808080; border-top: 0 solid #E0E0E0; border-bottom: 0 solid #808080\" width=\"2\"></table></div><div id=\"Contact\" style=\"position: absolute; top: 0%; left: 0%; width: 2; height: 2; z-index: 100; visibility: hidden;\"><table id=\"dmbMenu\" background=\"\" border=\"0\" cellpadding=\"1\" style=\"background-color: #000000; color: #000000; border-left: #E0E0E0 solid 0; border-right: 0 solid #808080; border-top: 0 solid #E0E0E0; border-bottom: 0 solid #808080\" width=\"2\"></table></div>");
			close();
		}
	if(NS)
		with(document) {
			open();
			write("<layer name=\"Home\" background=\"\" top=0 left=0 clip=\"0,0,0,2\" z-index=100  bgColor=\"#000000\" visibility=\"hidden\"></layer><layer name=\"Services\" background=\"\" top=0 left=0 clip=\"0,0,191,68\" z-index=100  bgColor=\"#000000\" visibility=\"hidden\"><layer name=MC1EH1 top=2 left=0 width=191 height=15 z-index=102 OnMouseOver=\"frames[\'self\'].NSHoverSel(0,mFrame.document.layers[\'Services\'].layers[\'MC1\'],\'#808080\',187,15);window.status=\'Web Design and Development\';\"></layer><layer name=MC1 top=2 left=2 width=187 height=15 z-index=100 bgcolor=#000000><p align=left><font face=Verdana point-size=8 color=#FFFFFF>Web Design and Development</font></layer><layer name=MC2EH2 top=18 left=0 width=191 height=15 z-index=102 OnMouseOver=\"frames[\'self\'].NSHoverSel(0,mFrame.document.layers[\'Services\'].layers[\'MC2\'],\'#808080\',187,15);window.status=\'eBusiness\';\"></layer><layer name=MC2 top=18 left=2 width=187 height=15 z-index=100 bgcolor=#000000><p align=left><font face=Verdana point-size=8 color=#FFFFFF>eBusiness</font></layer><layer name=MC3EH3 top=34 left=0 width=191 height=15 z-index=102 OnMouseOver=\"frames[\'self\'].NSHoverSel(0,mFrame.document.layers[\'Services\'].layers[\'MC3\'],\'#808080\',187,15);window.status=\'Search Engine Positioning\';\"></layer><layer name=MC3 top=34 left=2 width=187 height=15 z-index=100 bgcolor=#000000><p align=left><font face=Verdana point-size=8 color=#FFFFFF>Search Engine Positioning</font></layer><layer name=MC4EH4 top=50 left=0 width=191 height=15 z-index=102 OnMouseOver=\"frames[\'self\'].NSHoverSel(0,mFrame.document.layers[\'Services\'].layers[\'MC4\'],\'#808080\',187,15);window.status=\'Content Management\';\"></layer><layer name=MC4 top=50 left=2 width=187 height=15 z-index=100 bgcolor=#000000><p align=left><font face=Verdana point-size=8 color=#FFFFFF>Content Management</font></layer></layer><layer name=\"Samples\" background=\"\" top=0 left=0 clip=\"0,0,0,2\" z-index=100  bgColor=\"#000000\" visibility=\"hidden\"></layer><layer name=\"Contact\" background=\"\" top=0 left=0 clip=\"0,0,0,2\" z-index=100  bgColor=\"#000000\" visibility=\"hidden\"></layer>");
			close();
		}
SetUpEvents();



