// JavaScript Document
if (document.images) {
    officebuttonup       = new Image();
    officebuttonup.src   = "images/frontpg_office.gif" ;
    officebuttondown     = new Image() ;
    officebuttondown.src = "images/frontpg_office_hover.gif" ;
	
    webbuttonup       = new Image();
    webbuttonup.src   = "images/frontpg_website.gif" ;
    webbuttondown     = new Image() ;
    webbuttondown.src = "images/frontpg_website_hover.gif" ;
	
	basichostbuttonup       = new Image();
    basichostbuttonup.src   = "../images/web_hosting_prices_03.gif" ;
    basichostbuttondown     = new Image() ;
    basichostbuttondown.src = "../images/web_hosting_prices_03_hover.gif" ;
	
	basichostabuttonup       = new Image();
    basichostabuttonup.src   = "../images/web_hosting_prices_03-04.gif" ;
    basichostabuttondown     = new Image() ;
    basichostabuttondown.src = "../images/web_hosting_prices_03-04_hover.gif" ;
	
	adhostbuttonup       = new Image();
    adhostbuttonup.src   = "../images/web_hosting_prices_06-07.gif" ;
    adhostbuttondown     = new Image() ;
    adhostbuttondown.src = "../images/web_hosting_prices_06-07_hover.gif" ;
	
	adhostabuttonup       = new Image();
    adhostabuttonup.src   = "../images/web_hosting_prices_10.gif" ;
    adhostabuttondown     = new Image() ;
    adhostabuttondown.src = "../images/web_hosting_prices_10_hover.gif" ;
}
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" );
    }
}
