<!--
// preload images
		//original code written by Dan Steinman
		n = (document.layers)? true:false
		ie = (document.all)? true:false

		function preload(imgObj,imgSrc) {
                if (document.images) {
                        eval(imgObj+' = new Image()')
                        eval(imgObj+'.src = "'+imgSrc+'"')
                }
        }
		
   preload('img1off','pics/aboutusout.gif')
   preload('img1on','pics/aboutusover.gif')
   preload('img2off','pics/clientrequestout.gif')
   preload('img2on','pics/clientrequestover.gif')
   preload('img3off','pics/submitout.gif')
   preload('img3on','pics/submitover.gif')
   preload('img4off','pics/tipsout.gif')
   preload('img4on','pics/tipsover.gif')
   preload('img5off','pics/postingsout.gif')
   preload('img5on','pics/postingsover.gif')
   preload('img6off','pics/newsout.gif')
   preload('img6on','pics/newsover.gif')
   preload('img7off','pics/linksout.gif')
   preload('img7on','pics/linksover.gif')
   
   
function swapPic(layer,imgName,imgObj) {
                if (document.images) {
  		              if ((n) && layer!=null) eval('document.'+layer+'.document.images["'+imgName+'"].src = '+imgObj+'.src');
     		          else document.images[imgName].src = eval(imgObj+".src");
        } 
}

//Navigation Menu

if(window.event + "" == "undefined") event = null;
function HM_f_PopUp(){return false};
function HM_f_PopDown(){return false};
popUp = HM_f_PopUp;
popDown = HM_f_PopDown;

HM_PG_MenuWidth = 145;
HM_PG_FontFamily = "Verdana,Arial,sans-serif";
HM_PG_FontSize = 8;
HM_PG_FontBold = 0;
HM_PG_FontItalic = 0;
HM_PG_FontColor = "#000066";
HM_PG_FontColorOver = "#000000";
HM_PG_BGColor = "#FFFFFF";
HM_PG_BGColorOver = "#CCCCFF";
HM_PG_ItemPadding = 3;

HM_PG_BorderWidth = 1;
HM_PG_BorderColor = "000066";
HM_PG_BorderStyle = "solid";
HM_PG_SeparatorSize = 1;
HM_PG_SeparatorColor = "#000066";
HM_PG_ImageSrc = "pics/tri.gif";
HM_PG_ImageSrcLeft = "pics/triL.gif";

HM_PG_ImageSize = 16;
HM_PG_ImageHorizSpace = 1;
HM_PG_ImageVertSpace = 2;

HM_PG_KeepHilite = true; 
HM_PG_ClickStart = 0;
HM_PG_ClickKill = false;
HM_PG_ChildOverlap = 20;
HM_PG_ChildOffset = 10;
HM_PG_ChildPerCentOver = null;
HM_PG_TopSecondsVisible = .5;
HM_PG_StatusDisplayBuild =1;
HM_PG_StatusDisplayLink = 0;
HM_PG_UponDisplay = null;
HM_PG_UponHide = null;
HM_PG_RightToLeft = false;

HM_PG_CreateTopOnly = 1;
HM_PG_ShowLinkCursor = 1;
HM_PG_NSFontOver = true;

//Scrolling News

// Original:  news scroller v2.0 rev 1 11mar00  Original:  Dion (biab@iinet.net.au 
// Web Site:  http://members.iinet.net.au/~biab 

// blank is the location of an invisible gif image.
var blank = "pics/dot.gif";

//floating = true; // place news scroller anywhere on the page
topedge = 28;  // location of news box from top of page when floating

leftedge = 5;  // location of news box from left edge when floating

floating = false; // false looks for the DIV named 'place'
// DIV place can be stored within a table cell to allow accurate
// placement of the news scroller
// floating = true; // place the news scroller anywhere on the page

boxheight = 150;  // height of news box
boxwidth = 145;  // width of news box
scrollheight = 150; // total height of all data to be scrolled
speed = 2; // scrolling speed (line step size)

delay = 100; // .0100 second delay before next line srolled (1000=1sec)
source=""; // name of HTML page to load and replace the news.
// the original news DIV must be inplace but can contain anything

function scrollnews(cliptop) { 
if (document.layers){ 
	  newsDiv = document.news;
      nDc=newsDiv.clip;
      nDc.top = cliptop;
      nDc.bottom = cliptop + boxheight;
      nDc.left = 0;
      nDc.right = boxwidth + leftedge;
      newsDiv.left = (floating)?leftedge:document.place.pageX

      newsDiv.top = (floating)?topedge - cliptop:document.place.pageY-cliptop; 
	  }
   else { 
   	  newsDiv = news.style;
      newsDiv.clip = "rect(" + cliptop + "px " + (boxwidth + leftedge) + "px " + (cliptop + boxheight) + "px 0px)";
      newsDiv.pixelLeft = (floating)?leftedge:document.all.place.offsetLeft;
      newsDiv.pixelTop = (floating)?topedge - cliptop:document.all.place.offsetTop-cliptop; 
	  };
   if(source>""){ 
   newsDiv.src=source; source=""; 
   };
   cliptop = (cliptop + speed) % (scrollheight + boxheight);

   newsDiv.visibility='visible';
   setTimeout("scrollnews(" + cliptop + ")", delay); };


// end hiding contents -->