<!--
////
//(moved to hf2a1.js Opera?)var hfBotBarRHSText="click &lt;&lt;images&gt;&gt; to zoom&nbsp;";
////
var hfPath = "images/";
var hfPics = new Array;

hfPics[0] = new Array("hf2mainbig.jpg",281,396);
hfPics[1] = new Array("hf2main1.jpg",237,120);
hfPics[2] = new Array("hf2main2a.jpg",116,146);
hfPics[3] = new Array("hf2main2b.jpg",116,146);
hfPics[4] = new Array("hf2main3.jpg",134,104);
hfPics[5] = new Array("crest_flat_grey_small2B.jpg",404,60);
hfPics[6] = new Array("HFLogoLeft.jpg",404,60);
hfPics[7] = new Array("HFLogoRight.jpg",342,60);

var thePics1 = preloadImages(hfPath,hfPics);
function preloadImages(path,pics) {
     var images = new Array;
     for (var picNum=0; picNum<pics.length; picNum++)
        {
        images[picNum] = new Image(pics[picNum][1],pics[picNum][2]);
        images[picNum].src = (path + pics[picNum][0]);
        }
     return (images);
}
////
var hfSniffType=0;
var hfSniffName="unknown"; //IE NETSCAPE NAVIGATOR FIREFOX SAFARI OPERA
if(window.navigator.userAgent.indexOf("MSIE")!=-1){
	hfSniffName="MS Internet Explorer";
	hfSniffType=1;
	}
else{
if(window.navigator.userAgent.indexOf("Firefox")!=-1){
	hfSniffName="Mozilla Firefox";
	hfSniffType=2;
	}	
if(window.navigator.userAgent.indexOf("Navigator")!=-1){
	hfSniffName="Mozilla Navigator 9";
	hfSniffType=2;
	}
if(window.navigator.userAgent.indexOf("Netscape")!=-1){
	hfSniffName="Mozilla Netscape 8 and below";
	hfSniffType=2;
	}
if(window.navigator.userAgent.indexOf("Safari")!=-1){
	hfSniffName="Apple Safari";
	hfSniffType="3"
	}
if(window.navigator.userAgent.indexOf("Opera")!=-1){
	hfSniffName="Mozilla Opera";
	hfSniffType="3"
	}
}
//hfSniffType=0; //Test degrade gracefully
////
-->