
//<script>


//**************************************
//* This script pre-loads all the 
//* menu images do eliminate delay when
//* first hovering over the menu.
//**************************************

{
  blogoff = new Image(176,38);
  blogoff.src = "/images/b_blog.jpg";
  blogon = new Image(176,38);
  blogon.src = "/images/b_blog_h.jpg";
  socialoff = new Image(167,38);
  socialoff.src = "/images/b_facebook.jpg";
  socialon = new Image(167,38);
  socialon.src = "/images/b_facebook_h.jpg";
}


//**************************************
//* This script changes the
//* pre-loaded images when the mouse
//* pointer hovers over them.
//**************************************

function imgSwap(imgName, imgState)
{
  document.getElementById(imgName).src = eval(imgName + imgState + ".src");
}

