$(document).ready(function(){

var originalBG = $(".more-links a").css("background-color"); 
var originalBGlight = $("#navtabs a").css("background-color"); 

$("a:not(.more-links a, #footer a)").hover(function() {
$(this).animate({ color: "#999999" }, 300);
},function() {
$(this).animate({ color: "#555555" }, 300);
});

$("#footer a").hover(function() {
$(this).animate({ color: "#cccccc" }, 300);
},function() {
$(this).animate({ color: "#ffffff" }, 300);
});

$(".animate li a").hover(function() {
$(this).animate({ opacity: "0.8" }, 300);
},function() {
$(this).animate({ opacity: "1.0" }, 300);
});


$(".more-links a").hover(function() {
$(this).animate({ opacity: "0.6" }, 300);
},function() {
$(this).animate({ opacity: "1.0" }, 300);
});


$(".control div").hover(function() {
$(this).animate({ opacity: "0.6" }, 300);
},function() {
$(this).animate({ opacity: "1.0" }, 300);
});


	              });