var links = new Array (	["#", "----------------"],
						["http://www.nowgamer.com", "NowGamer.com"],
						["http://www.360magazine.co.uk", "360"],
						["http://www.play-mag.co.uk", "Play"],
						["http://www.retrogamer.net", "Retro Gamer"],
						["http://www.totalpcgaming.com", "Total PC Gaming"],
						["http://www.x360magazine.com", "X360"],
						["#", "----------------"]	);

document.write('<select id="jumpmenu" name="select" onChange="top.location.href=this.value">');
document.write('<option value="http://www.nowgamernetwork.com" selected="selected">NowGamer Network</option>');
for(var i = 0; i < links.length; i++) {
	document.write('<option value="'+links[i][0]+'">'+links[i][1]+'</option>');
}
document.write('</select>');