// JavaScript Document
/*
hotelbuttonup       = new Image();
hotelbuttonup.src   = "http://www.fidgetdesign.com/images/thumb_01.jpg" ;
hotelbuttondown     = new Image() ;
hotelbuttondown.src = "../images/thumb_01_down.jpg" ;
*/

if (document.images) {
	hotelbuttonup       = new Image();
    hotelbuttonup.src   = "../images/thumb_01.jpg";
    hotelbuttondown     = new Image() ;
    hotelbuttondown.src = "../images/thumb_01_down.jpg";
	
    spabuttonup       = new Image();
    spabuttonup.src   = "../images/thumb_02.jpg";
    spabuttondown     = new Image() ;
    spabuttondown.src = "../images/thumb_02_down.jpg" ;

	restaurantbuttonup       = new Image();
    restaurantbuttonup.src   = "../images/thumb_03.jpg";
    restaurantbuttondown     = new Image() ;
    restaurantbuttondown.src = "../images/thumb_03_down.jpg";
	
	retailbuttonup       = new Image();
    retailbuttonup.src   = "../images/thumb_04.jpg";
    retailbuttondown     = new Image() ;
    retailbuttondown.src = "../images/thumb_04_down.jpg";
	
	residentialbuttonup       = new Image();
    residentialbuttonup.src   = "../images/thumb_05.jpg";
    residentialbuttondown     = new Image() ;
    residentialbuttondown.src = "../images/thumb_05_down.jpg";
}

function buttondown( buttonname )
{
    if (document.images) {
      document[ buttonname ].src = eval( buttonname + "down.src" );
    }
}
function buttonup ( buttonname )
{
    if (document.images) {
      document[ buttonname ].src = eval( buttonname + "up.src" );
    }
}

