<!-- Begin

	function ClickDirect(linkid) {
		if (linkid == 0) document.location.href='index.html';
		if (linkid == 1) document.location.href='services.html';
		if (linkid == 2) document.location.href='about.html';
		if (linkid == 3) document.location.href='websites.html';
		if (linkid == 4) document.location.href='contact.html';
		if (linkid == 5) document.location.href='webservices.html';
		if (linkid == 6) document.location.href='itsupport.html';
		if (linkid == 7) document.location.href='softwaredevelopment.html';
		if (linkid == 8) document.location.href='businessdirectory/';
	}
	
	function ClickDirectLevel(linkid) {
		if (linkid == 0) document.location.href='../index.html';
		if (linkid == 1) document.location.href='../services.html';
		if (linkid == 2) document.location.href='../about.html';
		if (linkid == 3) document.location.href='../websites.html';
		if (linkid == 4) document.location.href='../contact.html';
		if (linkid == 5) document.location.href='../webservices.html';
		if (linkid == 6) document.location.href='../itsupport.html';
		if (linkid == 7) document.location.href='../softwaredevelopment.html';
		if (linkid == 8) document.location.href='../businessdirectory/';
	}
	
	function changeImage(id, over) {
		if(over==true){
			newImage = "url(images/button_over.jpg)";
			document.getElementById(id).style.backgroundImage = newImage;
		} else {
			newImage = "url(images/button.jpg)";
			document.getElementById(id).style.backgroundImage = newImage;		
		}
	}
	
	function changeImageLevel(id, over) {
		if(over==true){
			newImage = "url(../images/button_over.jpg)";
			document.getElementById(id).style.backgroundImage = newImage;
		} else {
			newImage = "url(../images/button.jpg)";
			document.getElementById(id).style.backgroundImage = newImage;		
		}
	}
	
-->