	<!--
	if (document.images) {
		hostingup       = new Image();
		hostingup.src   = "img/nav_hosting.gif";
		hostingdown     = new Image();
		hostingdown.src = "img/nav_hosting_on.gif";

		designup       = new Image();
		designup.src   = "img/nav_design.gif";
		designdown     = new Image();
		designdown.src = "img/nav_design_on.gif";

		domainsup       = new Image();
		domainsup.src   = "img/nav_domains.gif";
		domainsdown     = new Image();
		domainsdown.src = "img/nav_domains_on.gif";

		aboutup       = new Image();
		aboutup.src   = "img/nav_about.gif";
		aboutdown     = new Image();
		aboutdown.src = "img/nav_about_on.gif";

		supportup       = new Image();
		supportup.src   = "img/nav_support.gif";
		supportdown     = new Image();
		supportdown.src = "img/nav_support_on.gif";
		}
	function buttondown( buttonname )
	{
	if (document.images) {
		document[ buttonname ].src = eval( buttonname + "down.src" );
		}
	}
	function buttonup ( buttonname )
	{
		if (document.images) {
		document[ buttonname ].src = eval( buttonname + "up.src" );
		}
	}
	// -->