$(document).ready(function(){
	$("#panel").slideBox();
	$(".info").mouseover(function(){
		$("#hgsntb_text span:first").text( $(this).attr("id") );
		$("#hgsntb_text span:last").text( $(this).attr("rel") );
		$('<p class="msg">click to visit</p>').insertAfter(this);
	}).mouseout(function(){
		$("#hgsntb_text span:first").text("");
		$("#hgsntb_text span:last").text("");
		$(".msg").remove();
	});
});

