// v1.0 - victor malca
$(document).ready(function()
{
	$('.WEB_CONTE_enter_box')
	.filter(
		function()
		{
			$(this).bind(
				'mouseenter mouseleave', 
				function(e)
				{
					if(e.type=='mouseenter')
					{
						$(this).children('div').css('top', $(this).position().top + $(this).height() + 'px');
						$(this).children('div').css('left', $(this).position().left + 'px');
						$(this).children('div').show();
						$(this).children('span').addClass('menu-selected');
						$(this).children('a').addClass('menu-selected');
					}
					if(e.type=='mouseleave') 
					{
						$(this).children('div').hide();
						$(this).children('span').removeClass('menu-selected');
						$(this).children('a').removeClass('menu-selected');
					}
				}
			);			
		}
	);

});

