<!-- 

// ROLLOVER IMAGES
// check browser version & preload images
browserName=navigator.appName; browserVer=parseInt(navigator.appVersion);
if(browserVer >=3) version="3";
else version="2"; if (version=="3")
{
home_on=new Image(); home_on.src="golf_net_files/n_home2.gif";
home_off=new Image(); home_off.src="golf_net_files/n_home1.gif";
about_on=new Image(); about_on.src="golf_net_files/n_about_us2.gif";
about_off=new Image(); about_off.src="golf_net_files/n_about_us1.gif";
golf_bays_on=new Image(); golf_bays_on.src="golf_net_files/n_custom_fit_golf_bays2.gif";
golf_bays_off=new Image(); golf_bays_off.src="golf_net_files/n_custom_fit_golf_bays1.gif";
golf_frames_on=new Image(); golf_frames_on.src="golf_net_files/n_golf_frames_for_hire2.gif";
golf_frames_off=new Image(); golf_frames_off.src="golf_net_files/n_golf_frames_for_hire1.gif";
bay_dividers_on=new Image(); bay_dividers_on.src="golf_net_files/n_bay_dividers2.gif";
bay_dividers_off=new Image(); bay_dividers_off.src="golf_net_files/n_bay_dividers1.gif";
examples_on=new Image(); examples_on.src="golf_net_files/n_examples2.gif";
examples_off=new Image(); examples_off.src="golf_net_files/n_examples1.gif";
contact_on=new Image(); contact_on.src="golf_net_files/n_contact2.gif";
contact_off=new Image(); contact_off.src="golf_net_files/n_contact1.gif";
}

// rollover nameswap scripts
function rollIn(imgName) { if (version=="3") { document[imgName].src=eval(imgName + "on.src"); } }
function rollOut(imgName) { if (version=="3") { document[imgName].src=eval(imgName + "off.src"); } }

-->

