$(function () {
    $('#menu li ul').each(function (index) {
		var ulMargin = (($(this).outerWidth())-($(this).parent().outerWidth()))/2;
        $(this).css('margin-left', -ulMargin);
    });
	
    $('#menu li a span.bgfade').each(function (index) {
		var st = $(this).parent().outerWidth();
        $(this).width(st);
    });
    $("#menu li a:not('#menu li.active a')").hover(
		  function () {
		      $(this).find('span.bgfade').stop(true, true).fadeIn(300);
		      $(this).find('strong').stop().animate({ color: "#febe10" }, { duration: 300 });
		  },
		  function () {
		      $(this).find('span.bgfade').stop(true, true).fadeOut(300);
		      $(this).find('strong').stop().animate({ color: "#fff" }, { duration: 300 });
		  }
	);
    $("#menu li.active li a:not('#menu li.active li.active a')").hover(
		  function () {
		      $(this).find('span.bgfade').stop(true, true).fadeIn(300);
		      $(this).find('strong').stop().animate({ color: "#febe10" }, { duration: 300 });
		  },
		  function () {
		      $(this).find('span.bgfade').stop(true, true).fadeOut(300);
		      $(this).find('strong').stop().animate({ color: "#fff" }, { duration: 300 });
		  }
	);
});
