<!-- Rollover JavaScript functions relies on image replacement feature of JavaScript 1.1



lessthan = "<";

greaterthan = unescape("%3e");



function nbsp() { if ((3 <= version()) ||

(navigator.appName.indexOf("Internet Explorer") !=

-1)) document.write("&nbsp;"); }

function nb3()  { if (3 <= version())

document.write("&nbsp;&nbsp;&nbsp;"); }

function copy() { document.write("&copy;"); }

function dtbr() { if ((3 <= version()) ||

(navigator.appName.indexOf("Internet Explorer") !=

-1)) document.write(lessthan + "br" +

greaterthan); }



var iversion = -1;



function version() {

 if (iversion != -1) return iversion;

        if(navigator.appName.indexOf("Netscape")

!= -1 || navigator.appName.indexOf("Mozilla") !=

-1){

                if

(navigator.userAgent.indexOf("Mozilla/2.0") != -1)



                    iversion = 2;

                 else

                     if

(navigator.userAgent.indexOf("Mozilla/3.0") != -1)



                     iversion = 3;

                   else

                          if

(navigator.userAgent.indexOf("Mozilla/4.") != -1)

                           iversion = 4;

                          else

                           if

(navigator.userAgent.indexOf("Mozilla/5.") != -1)

                            iversion = 5;

                           else

                               iversion = 1;

        }  else {  // Not netscape.

               

if(navigator.appName.indexOf("Internet Explorer")

!= -1){

                     if

(navigator.userAgent.indexOf("Mozilla/4.") != -1)

                       iversion = 4;

                         else

                            iversion = 1;

                     } else

                      iversion = 1;

               }

 return iversion;

}



function preLoad() { }

function rollon() { }

function rolloff() { }

// -->


<!-- 



if (document.images) { 



	// active images - when mouse is over image



img1on = new Image();

img1on.src = "/images/motel1.jpg";

img2on = new Image();

img2on.src = "/images/efficiency1.jpg";

img3on = new Image();

img3on.src = "/images/cottage1.jpg";



	// inactive images - when mouse is not over image



img1off = new Image(); 

img1off.src = "/images/motel1.jpg"; 

img2off = new Image(); 

img2off.src = "/images/efficiency1.jpg"; 

img3off = new Image(); 

img3off.src = "/images/cottage1.jpg"; 



	// active remote images - when mouse is over button



img1ad = new Image();

img1ad.src = "/images/swap2.gif";

img2ad = new Image();

img2ad.src = "/images/swap3.gif";

img3ad = new Image();

img3ad.src = "/images/swap4.gif";



} 



	// function for active images



function imgOn(imgName) {

if (document.images) {

document[imgName].src = eval(imgName + "on.src");

document["common"].src = eval(imgName + "ad.src");

}

} 



	// function for remote images



function imgOff(imgName) {

if (document.images) {

document[imgName].src = eval(imgName + "off.src");

document["common"].src = "../images/swap1.gif";

}

} 



//-->