/// Start Check Browser ///
	var intBrowser = 0;
	if ((navigator.appName == 'Microsoft Internet Explorer') && (parseInt(navigator.appVersion) >= 4)) {
		intBrowser = 1;
	}
	else {
		if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) >= 3)) {
			intBrowser = 1;
	}
		else {
			intBrowser = 0;
		}
	}
/// End Check Browser ///

/// Start Image On and Off ///

	if (intBrowser == 1) {
		homeOff = new Image ();
		homeOff.src = "images/Home-Off.gif";
		homeOn = new Image ();
		homeOn.src= "images/Home-On.gif";

		servicesOff = new Image ();
		servicesOff.src = "images/Services-Off.gif";
		servicesOn = new Image ();
		servicesOn.src = "images/Services-On.gif";

		projectsOff = new Image ();
		projectsOff.src = "images/Projects-Off.gif";
		projectsOn = new Image ();
		projectsOn.src = "images/Projects-On.gif";

		aboutOff = new Image ();
		aboutOff.src = "images/AboutMe-Off.gif";
		aboutOn = new Image ();
		aboutOn.src = "images/AboutMe-On.gif";

		contactOff = new Image ();
		contactOff.src = "images/ContactMe-Off.gif";
		contactOn = new Image ();
		contactOn.src = "images/ContactMe-On.gif";

		linksOff = new Image ();
		linksOff.src = "images/Links-Off.gif";
		linksOn = new Image ();
		linksOn.src = "images/Links-On.gif";

		mapOff = new Image ();
		mapOff.src = "images/SiteMap-Off.gif";
		mapOn = new Image ();
		mapOn.src = "images/SiteMap-On.gif";
	}
	function imgOn(imgName) {
		if (intBrowser == 1) {	
			document[imgName].src = eval(imgName + "On.src");
		}
	}
	function imgOff(imgName) {
		if (intBrowser == 1) {	
			document[imgName].src = eval(imgName + "Off.src");
		}
	}

/// End Image On and Off ///

/// Start Pop Up Horizontal Window ///

function popWindow(imgName) {
	var strImg = imgName + ".html"
	popWin = window.open( strImg,"a" , "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,width=640,height=600");
	popWin.window.focus();
}

/// End Pop Up Horizontal Window ///

/// Start Pop Up Vertical Window ///

function popWindowV(imgName) {
	var strImg = imgName + ".html"
	popWinV = window.open( strImg,"b" , "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,width=480,height=760");
	popWinV.window.focus();
}

/// End Pop Up Vertical Window ///

/// Start Pop Up Small Horizontal Window ///

function popSWindow(imgName) {
	var strImg = imgName + ".html"
	popSWin = window.open( strImg,"c" , "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,width=320,height=600");
	popSWin.window.focus();
}

/// End Pop Up Small Horizontal Window ///

/// Start Pop Up Small Vertical Window ///

function popSWindowV(imgName) {
	var strImg = imgName + ".html"
	popSWinV = window.open( strImg,"d" , "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,width=240,height=550");
	popSWinV.window.focus();
}

/// End Pop Up Small Vertical Window ///

/// Start Copyright Year///

function copyrightYear() {
	var today = new Date()
	result = today.getFullYear()
	document.write ("Copyright " + today.getFullYear())
}

/// End Copyright Year ///

/// Start Convert Month ///

function convertMonth(monthValue) {
  // This function converts a monthValue (usually returned from the getMonth() method)
  // numeral into the string text for the month of the year.
  var strMonth  = new Array();
  strMonth.length = 12; // necessary to 'allocate' array space.
  strMonth[0] = "January";
  strMonth[1] = "February";
  strMonth[2] = "March";
  strMonth[3] = "April";
  strMonth[4] = "May";
  strMonth[5] = "June";
  strMonth[6] = "July";
  strMonth[7] = "August";
  strMonth[8] = "September";
  strMonth[9] = "October";
  strMonth[10] = "November";
  strMonth[11] = "December";
  return strMonth[monthValue];
}

/// End Convert Month ///

/// Start Current Date ///

function currentDate() {
	var now = new Date();
	intMonth = now.getMonth();
	intMonth1 = parseInt(intMonth);
	strMonth1 = convertMonth(intMonth1);
	intYear = now.getFullYear();
	intDate = now.getDate();
	document.write (strMonth1, "&nbsp;", intDate, ",&nbsp;", intYear);
}

/// End Current Date ///

/// Added by Seiichi Nakanome *********************** ///
<!--HPB_SCRIPT_ROV_50
// HpbImgPreload:
//
function HpbImgPreload()
{
  var appVer=parseInt(navigator.appVersion);
  var isNC=(document.layers && (appVer >= 4));
  var isIE=(document.all    && (appVer >= 4));
  if (isNC || isIE)
  {
    if (document.images)
    {
      var imgName = HpbImgPreload.arguments[0];
      var cnt;
      swImg[imgName] = new Array;
      for (cnt = 1; cnt < HpbImgPreload.arguments.length; cnt++)
      {
        swImg[imgName][HpbImgPreload.arguments[cnt]] = new Image();
        swImg[imgName][HpbImgPreload.arguments[cnt]].src = HpbImgPreload.arguments[cnt];
      }
    }
  }
}
// HpbImgFind:
//
function HpbImgFind(doc, imgName)
{
  for (var i=0; i < doc.layers.length; i++)
  {
    var img = doc.layers[i].document.images[imgName];
    if (!img) img = HpbImgFind(doc.layers[i], imgName);
    if (img) return img;
  }
  return null;
}
// HpbImgSwap:
//
function HpbImgSwap(imgName, imgSrc)
{
  var appVer=parseInt(navigator.appVersion);
  var isNC=(document.layers && (appVer >= 4));
  var isIE=(document.all    && (appVer >= 4));
  if (isNC || isIE)
  {
    if (document.images)
    {
      var img = document.images[imgName];
      if (!img) img = HpbImgFind(document, imgName);
      if (img) img.src = imgSrc;
    }
  }
}
var swImg; swImg=new Array;
//-->

/// Start Scroll Down Menu ///
function fmenu1(){
	if( menu1.style.display == "none")
		menu1.style.display = "block";
	else
		menu1.style.display = "none";}
function fmenu2(){
	if( menu2.style.display == "none")
		menu2.style.display = "block";
	else
		menu2.style.display = "none";}
function fmenu3(){
	if( menu3.style.display == "none")
		menu3.style.display = "block";
	else
		menu3.style.display = "none";}
function fmenu4(){
	if( menu4.style.display == "none")
		menu4.style.display = "block";
	else
		menu4.style.display = "none";}
function fmenu5(){
	if( menu5.style.display == "none")
		menu5.style.display = "block";
	else
		menu5.style.display = "none";}
function fmenu6(){
	if( menu6.style.display == "none")
		menu6.style.display = "block";
	else
		menu6.style.display = "none";}
function fmenu7(){
	if( menu7.style.display == "none")
		menu7.style.display = "block";
	else
		menu7.style.display = "none";}
function fmenu8(){
	if( menu8.style.display == "none")
		menu8.style.display = "block";
	else
		menu8.style.display = "none";}
function fmenu9(){
	if( menu9.style.display == "none")
		menu9.style.display = "block";
	else
		menu9.style.display = "none";}
function fmenu10(){
	if( menu10.style.display == "none")
		menu10.style.display = "block";
	else
		menu10.style.display = "none";}
function fmenu11(){
	if( menu11.style.display == "none")
		menu11.style.display = "block";
	else
		menu11.style.display = "none";}
function fmenu12(){
	if( menu12.style.display == "none")
		menu12.style.display = "block";
	else
		menu12.style.display = "none";}
function fmenu13(){
	if( menu13.style.display == "none")
		menu13.style.display = "block";
	else
		menu13.style.display = "none";}
function fmenu14(){
	if( menu14.style.display == "none")
		menu14.style.display = "block";
	else
		menu14.style.display = "none";}
function fmenu15(){
	if( menu15.style.display == "none")
		menu15.style.display = "block";
	else
		menu15.style.display = "none";}
function fmenu16(){
	if( menu16.style.display == "none")
		menu16.style.display = "block";
	else
		menu16.style.display = "none";}
function fmenu17(){
	if( menu17.style.display == "none")
		menu17.style.display = "block";
	else
		menu17.style.display = "none";}
function fmenu18(){
	if( menu18.style.display == "none")
		menu18.style.display = "block";
	else
		menu18.style.display = "none";}
function fmenu19(){
	if( menu19.style.display == "none")
		menu19.style.display = "block";
	else
		menu19.style.display = "none";}
function fmenu20(){
	if( menu20.style.display == "none")
		menu20.style.display = "block";
	else
		menu20.style.display = "none";}
/// End Scroll Down Menu ///


