var $j = jQuery.noConflict();



$j(function() {
// OPACITY OF BUTTON SET TO 50%
$j(".menu li a").css("backgroundColor:#1F1f1F;");

$j(".menu li a").hover(function () {$j(this).stop().css("backgroundColor:#888888;"), "fast");
},


function () {$j(this).stop().css("backgroundColor:#1f1f1f;"), "fast");
});
});


