$(function(){
	$('.menu ul li a').mouseenter(function(e){
		var pos = $(this).parent().offset().left - $('.menu').offset().left;
		var widthdiff = $(this).parent().children('div').width() - $(this).width();
		pos -= widthdiff / 2;
		
		if ($(this).hasClass('main')) $(this).css({'background-image':'url(images/bg.png)','background-repeat':'repeat','color':'#eee'});
		$(this).parent().children('div').css({'left':pos}).fadeIn('fast');
	})
	
	$('.menu ul li').mouseleave(function(){
		if ($(this).children('a').hasClass('main')) $(this).children('a').css({'background-image':'none','color':'#666'})
		$(this).children('div').fadeOut('fast');
	});
});