$(document).ready(function(){
	$("#help").hover(function(){
		$("#disp_help").show();
		var _top = $(this).offset().top - 180 ;
		var _left = $(this).offset().left - 160;
		$("#disp_help").css("top",_top);
		$("#disp_help").css("left",_left);
	},
	function(){
		$("#disp_help").hide();
	});
	
	$("#largeLinkField > li").click(function(){
		window.location.href = $("a",this).attr("href");
	});
	$("#largeLinkField > li").hover(function(){
		$("a",this).css("text-decoration","underline");
	},function(){
		$("a",this).css("text-decoration","none");
	});

});





