underlineLinks = function() {
	$("a[href!='']").hover(function() {
		$(this).css({"text-decoration": "underline"});
	},function() {
		$(this).css({"text-decoration": "none"});
	});
}