$(document).ready(function(){
	$('.bmenu').mouseover(function ( ev ) {
		clickId = $(this).attr('id');
		ev = ev || window.event;
		offsetLeft = $(this).offset().left;
		widthLi = $(this).width();
		centerFoot = parseInt(widthLi / 2);
		footPos = parseInt(offsetLeft + centerFoot - 160);
		$('.footnote').show();
		$('.footnote').animate({"left": parseInt(footPos) +  "px"}, "slow");
		ev.stopPropagation ? ev.stopPropagation() : ev.cancelBubble = true;
		$('.foot_text#' + clickId).show();
	});
	$('.bmenu').mouseout(function () {
		clickId = $(this).attr('id');
		$('.footnote').hide();
		$('.footnote').stop();
		$('.foot_text#' + clickId).hide();
	});
});