// Background color animation 
        $(document).ready(function(){
                $("#slidermenu li").hover(function() {
                $(this).stop().animate({ backgroundColor: "#333333" }, 150);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#191919" }, 500);
        });
 // font color animation 
                $(".second a").stop().hover(function() {
                $(this).stop().animate({ color: "#00eeff" }, 400);
        },function() {
    $(this).animate({ color: "#FFFFFF" }, 500);
        });
    // Fun with Color. Differnt font color each time hover
    // Original code can be found http://davidwalsh.name/jquery-random-color-animate
       original = $('.third a').css('background-color');
	$('.third a').hover(function() { //mouseover
		var col = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';
		$(this).stop().animate({'backgroundColor': col}, 1000);
	},function() { //mouseout
		$(this).stop().animate({'backgroundColor': original},500);
	});
 // Hover Color Does not change back to original	
	$('.fourth a').hover(function() { //mouseover
		var col = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';
		$(this).animate({'backgroundColor': col},500);
	},function() { //mouseout
		$(this).animate({'backgroundColor': col},500);
	});
  });
