// JavaScript Document

var content=new Array();
//change the array below to the text associated with your links Expand or contract the array, depending on how many links you have
content[0]=' &nbsp; ';
content[1]='HD1 Traditional Programming';
content[2]='HD2 Adult Acoustic Alternative';
content[3]='HD3 BBC World Service';


function changetext(id) {
document.getElementById('hd_info').innerHTML = content[id];
if(id != 0) {
	document.getElementById('hd_info').style.backgroundImage='url(http://156.26.180.152/images/bkg_hd_rollover.png)';
} else {
	document.getElementById('hd_info').style.backgroundImage='none';
}
}