function foo() {
	alert('foo');
}
function doNav(ctrl) {
	try{
		if(ctrl.childNodes[0].tagName == 'A') {
			window.location = ctrl.childNodes[0].href;
		}
	} catch (e) {}
}