// JavaScript Document

 
  if(document.images){
  
    aboutOff =new Image();  aboutOff.src="images/about_off.gif";
    aboutOn =new Image();  aboutOn.src="images/about_on.gif";
    
    fishingOff =new Image();  fishingOff.src="images/fishing_off.gif";
    fishingOn =new Image();  fishingOn.src="images/fishing_on.gif";
    
    beyondFishingOff =new Image();  beyondFishingOff.src="images/beyondFishing_off.gif";
    beyondFishingOn =new Image();  beyondFishingOn.src="images/beyondFishing_on.gif";
    
    foodOff =new Image();  foodOff.src="images/food_off.gif";
    foodOn =new Image();  foodOn.src="images/food_on.gif";
    
    galleryOff =new Image();  galleryOff.src="images/gallery_off.gif";
    galleryOn =new Image();  galleryOn.src="images/gallery_on.gif";
    
    memberOff =new Image();  memberOff.src="images/member_off.gif";
    memberOn =new Image();  memberOn.src="images/member_on.gif";
    
    videosOff =new Image();  videosOff.src="images/videos_off.gif";
    videosOn =new Image();  videosOn.src="images/videos_on.gif";
	
    contactOff =new Image();  contactOff.src="images/contact_off.gif";
    contactOn =new Image();  contactOn.src="images/contact_on.gif";
    
    member_btmOff =new Image();  member_btmOff.src="images/member_btm_off.gif";
    member_btmOn =new Image();  member_btmOn.src="images/member_btm_on.gif";

videoOff=new Image(); videoOff.src="images/video_off.jpg";
videoOn = new Image(); videoOn.src="images/video_on.jpg";
  
  }
  
  function changeImg(imgNam, onoff){
  	if(document.images){	
  		document.images[imgNam].src=eval(imgNam+onoff+'.src');
  	}
  }