<!-- //
			
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/button_adult_on.gif";
        var h1_off = new Image();		
		h1_off.src = sRootPath + "objects/img/button_adult.gif"; 

        var h2_on = new Image();
		h2_on.src = sRootPath + "objects/img/button_children_on.gif";
        var h2_off = new Image();		
		h2_off.src = sRootPath + "objects/img/button_children.gif"; 
		
        var h3_on = new Image();
		h3_on.src = sRootPath + "objects/img/button_scalp_on.gif";
        var h3_off = new Image();		
		h3_off.src = sRootPath + "objects/img/button_scalp.gif"; 
		
        var h4_on = new Image();
		h4_on.src = sRootPath + "objects/img/menu_wellbeing-over.gif";
        var h4_off = new Image();		
		h4_off.src = sRootPath + "objects/img/menu_wellbeing.gif"; 

        var h5_on = new Image();
		h5_on.src = sRootPath + "objects/img/menu_intheuk-over.gif";
        var h5_off = new Image();		
		h5_off.src = sRootPath + "objects/img/menu_intheuk.gif"; 

        var h6_on = new Image();
		h6_on.src = sRootPath + "objects/img/menu_contactus-over.gif";
        var h6_off = new Image();		
		h6_off.src = sRootPath + "objects/img/menu_contactus.gif"; 
		
        var h7_on = new Image();
		h7_on.src = sRootPath + "objects/img/menu_emailme-over.gif";
        var h7_off = new Image();		
		h7_off.src = sRootPath + "objects/img/menu_emailme.gif"; 

		var h8_on = new Image();
		h8_on.src = sRootPath + "objects/img/menu_press-over.gif";
        var h8_off = new Image();		
		h8_off.src = sRootPath + "objects/img/menu_press.gif"; 
		
		
        var h9_on = new Image();
		h9_on.src = sRootPath + "objects/img/menu_health-over.gif";
        var h9_off = new Image();		
		h9_off.src = sRootPath + "objects/img/menu_health.gif"; 
		
        var h10_on = new Image();
		h10_on.src = sRootPath + "objects/img/menu_health-over.gif";
        var h10_off = new Image();		
		h10_off.src = sRootPath + "objects/img/menu_health.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 = ""
}

// -->
