<!--

  if (document.images)
   {
     pic1off= new Image(125,78);
     pic1off.src="imgs/house.jpg";
     
     pic1on= new Image(125,78);
     pic1on.src="imgs/house_hover.jpg";    
	 
	 pic2off= new Image(207,78);
     pic2off.src="imgs/lodging.jpg";    
	 
	 pic2on= new Image(207,78);
     pic2on.src="imgs/lodging_hover.jpg";   
	 
	 pic3off= new Image(134,78);
     pic3off.src="imgs/gallery.jpg";    
	 
	 pic3on= new Image(134,78);
     pic3on.src="imgs/gallery_hover.jpg";   
	 
	 pic4off= new Image(154,78);
     pic4off.src="imgs/contacts.jpg";    
	 
	 pic4on= new Image(154,78);
     pic4on.src="imgs/contacts_hover.jpg";   
	 
 	 pic5off= new Image(180,78);
     pic5off.src="imgs/apriltsi.jpg";    
	 
	 pic5on= new Image(180,78);
     pic5on.src="imgs/apriltsi_hover.jpg";  
   }

function lightup(imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }

function turnoff(imgName)
 {
   if (document.images)
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff;
    }
 }

//-->

<!--
function CenterWindow(mypage,myname,wie,hie,resizeable,scrol)
{
  var iewinl = (screen.availWidth - wie) / 2;
  var iewint = (screen.availHeight - hie) / 2;
  if (navigator.appName=='Netscape') 
    winprops = 'innerHeight='+hie+',innerWidth='+wie+',top='+iewint+',left='+iewinl+',scrollbars='+scrol+',resizable='+resizeable;
  else 
	winprops = 'height='+hie+',width='+wie+',top='+iewint+',left='+iewinl+',scrollbars='+scroll+',resizable='+resizeable;
  win = window.open(mypage, myname, winprops);
}
//-->




