$(function() {
// OPACITY OF BUTTON SET TO 33%
$("ul.sub").css("opacity","0.33");

		
// ON MOUSE OVER
$("ul.sub").hover(function () {
										  
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 1
}, "slow");
},
		
// ON MOUSE OUT
function () {
			
// SET OPACITY BACK TO 33%
$(this).stop().animate({
opacity: 0.33  
}, "slow");
});
});

// add class to anchor links only
$("a[name]").addClass("anchor");
