$(document).ready(function()
{
	$("#CntrTitul #ProdBtn .menu_btm_item").bind('mouseenter', function() {
		var th = $(this);									  
		animMBFunc($(this),th.position().top,th.position().left, th.outerHeight());
	})	
});



function animMBFunc(obj,oTop,oLeft,oHeight) {
	$(obj).parent().children(".menu_btm_marker").stop().animate({top: oTop, left:oLeft, height: oHeight}, 500, 'easeInOutQuad' );
}

