function goLocation(theObject) {
	if(typeof($(theObject).find("a").attr("href")) != 'undefined') {
		window.location.href = $(theObject).find("a").attr("href");
	}
	return false;
}
