<!-- //
			
var item_selected
item_selected = 'blank';

function on(imgName,AltImgName) {
        if ((document.images) && (item_selected != imgName)){ 
                document[imgName].src = eval(imgName + '.src')
				document[AltImgName].src = eval(imgName + '_pop.src');				
        }
}

function off(imgName,AltImgName) {
        if ((document.images) && (item_selected != imgName)){
                document[imgName].src = eval(imgName + '.src')
				document[AltImgName].src = eval(AltImgName + '_on.src');					
        }
}

function tocon(imgName) {
        if ((document.images) && (item_selected != imgName)){ 
                document[imgName].src = eval(imgName + '_on.src');
        }
}

function tocoff(imgName) {
        if ((document.images) && (item_selected != imgName)){
                document[imgName].src = eval(imgName + '_off.src');
        }
}

function desel(imgName) {
        if ((document.images)  && (imgName != 'blank')){
                document[imgName].src = eval(imgName + '_off.src')
                }
}

function hilite(imgName) {
        if (document.images){
                desel(item_selected);
                document[imgName].src = eval(imgName + '_sel.src');
                item_selected = imgName;
	     }
}

function openWindow(winUrl,winName,winFeat) {
		window.open(winUrl,winName,winFeat);
}


function leapto(form) {
		var myindex=form.dest.selectedIndex
		answers.location.href=(form.dest.options[myindex].value);
}

if (document.images){

        var h1_on = new Image();
		h1_on.src = sRootPath + "objects/img/arrow_left_down.gif";
        var h1_off = new Image();		
		h1_off.src = sRootPath + "objects/img/arrow_left_up.gif"; 

        var h2_on = new Image();
		h2_on.src = sRootPath + "objects/img/arrow_right_down.gif";
        var h2_off = new Image();		
		h2_off.src = sRootPath + "objects/img/arrow_right_up.gif"; 
		
        var h3_on = new Image();
		h3_on.src = sRootPath + "objects/img/but_home_on.gif";
        var h3_off = new Image();		
		h3_off.src = sRootPath + "objects/img/but_home_off.gif"; 

        var h4_on = new Image();
		h4_on.src = sRootPath + "objects/img/but_us_on.gif";
        var h4_off = new Image();		
		h4_off.src = sRootPath + "objects/img/but_us_off.gif";

        var h5_on = new Image();
		h5_on.src = sRootPath + "objects/img/but_reasons_on.gif";
        var h5_off = new Image();		
		h5_off.src = sRootPath + "objects/img/but_reasons_off.gif";

        var h6_on = new Image();
		h6_on.src = sRootPath + "objects/img/but_products_on.gif";
        var h6_off = new Image();		
		h6_off.src = sRootPath + "objects/img/but_products_off.gif";

        var h7_on = new Image();
		h7_on.src = sRootPath + "objects/img/but_bespoke_on.gif";
        var h7_off = new Image();		
		h7_off.src = sRootPath + "objects/img/but_bespoke_off.gif";

        var h8_on = new Image();
		h8_on.src = sRootPath + "objects/img/but_quality_on.gif";
        var h8_off = new Image();		
		h8_off.src = sRootPath + "objects/img/but_quality_off.gif";		

        var h9_on = new Image();
		h9_on.src = sRootPath + "objects/img/but_social_on.gif";
        var h9_off = new Image();		
		h9_off.src = sRootPath + "objects/img/but_social_off.gif";

        var h10_on = new Image();
		h10_on.src = sRootPath + "objects/img/but_contact_on.gif";
        var h10_off = new Image();		
		h10_off.src = sRootPath + "objects/img/but_contact_off.gif";		
		
		} else {
		
		h1_on = ""
		h1_off = ""
		document.h1 = ""
		
		h2_on = ""
		h2_off = ""
		document.h2 = ""
		
		h3_on = ""
		h3_off = ""
		document.h3 = ""
		
		h4_on = ""
		h4_off = ""
		document.h4 = ""
		
		h5_on = ""
		h5_off = ""
		document.h5 = ""

		h6_on = ""
		h6_off = ""
		document.h6 = ""
		
		h7_on = ""
		h7_off = ""
		document.h7 = ""
		
		h8_on = ""
		h8_off = ""
		document.h8 = ""
		
		h9_on = ""
		h9_off = ""
		document.h9 = ""

		h10_on = ""
		h10_off = ""
		document.h10 = ""				

}

// -->
