//javascript document
if ( page_location == undefined ){
	var page_location = '../';
}

var menu_items = new Array;
menu_items[0] = 'menu_products';
menu_items[1] = 'menu_pricing';
menu_items[2] = 'menu_channels';
menu_items[3] = 'menu_about';
menu_items[4] = 'menu_press';
menu_items[5] = 'menu_contact';

var menu_tier2_items = new Array;
menu_tier2_items[0] = '<a href="' + page_location + 'sdtv/index.php" target="_self">Shoreditch TV</a> | <a href="' + page_location + 'products/homechoice.php" target="_self">HomeChoice</a> | <a href="' + page_location + 'products/adsl.php" target="_self">Broadband</a> | <a href="' + page_location + 'products/pcontv.php" target="_self">PC on TV</a> | <a href="' + page_location + 'products/telephone.php" target="_self">Telephone</a>';
menu_tier2_items[1] = 'Loading...';
menu_tier2_items[2] = '<a href="' + page_location + 'sdtv/index.php" target="_self">Shoreditch TV</a> | <a href="' + page_location + 'sdtv/crime.php" target="_self">Crime</a> | <a href="' + page_location + 'sdtv/money.php" target="_self">Money</a>| <a href="' + page_location + 'sdtv/local.php" target="_self">Local</a>';
menu_tier2_items[3] = 'Loading...';
menu_tier2_items[4] = 'Loading...';
menu_tier2_items[5] = 'Loading...';

var last_highlight = 0;

function menuHighlight(target){

	setBg(menu_items[last_highlight], '#999999');
	if(last_highlight === 0){
		setBgImg('menu_corner1', 'url(' + page_location + 'img/darkgrey_corner_left.gif)');
	}else if(last_highlight == 5){
		setBgImg('menu_corner2', 'url(' + page_location + 'img/darkgrey_corner_right.gif)');
	}
	 
	setBg(menu_items[target], '#0674B3');
	if(target === 0){
		setBgImg('menu_corner1', 'url(' + page_location + 'img/blue_corner_left.gif)');
	}else if(target == 5){
		setBgImg('menu_corner2', 'url(' + page_location + 'img/blue_corner_right.gif)');
	}
	
	setInnerHTML('menu_tier2', menu_tier2_items[target]); 
	
	last_highlight = target;
}