 // Background color animation 
        $(document).ready(function(){
								   
                $(".sub a").hover(function() {
                $(this).stop().animate({ backgroundColor: "#bebdbd" }, 135);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#cdcdcd" }, 135);
        });
				
				$(".sub2 a").hover(function() {
                $(this).stop().animate({ backgroundColor: "#e5e5e5" }, 135);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#f2f2f2" }, 135);
        });
				
				$("ul li a.active").hover(function() {
                $(this).stop().animate({ backgroundColor: "#868686" }, 135);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#868686" }, 135);
        });
				
				$("ul li ul li a.active").hover(function() {
                $(this).stop().animate({ backgroundColor: "#e5e5e5" }, 135);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#e5e5e5" }, 135);
        });
  });
