$(function() {
$(".jbbb ul li").hover(function() {
		var $offset = $(this).position();
		//alert($offset.left + " " + $offset.top);
		$(this).children("div.layer").stop(true,true).css({ "left": $offset.left-300, "top": $offset.top-5 }).show("fast");
	}, function() {
		$(".layer").stop(true,true).hide();
	})
})

