$(document).ready(function() {

	$('#sidebar_mostviewed a').removeClass('noscript');
	$('#sidebar_mostviewed a').hover(function(){
		$(this).animate({backgroundColor: "#ddd"}, 300);
		}, function () {
		$(this).animate({backgroundColor: "#fff"}, 300);
	});
	
	$('#sidebar_pressing a').removeClass('noscript');
	$('#sidebar_pressing a').hover(function(){
		$(this).animate({backgroundColor: "#ddd"}, 300);
		}, function () {
		$(this).animate({backgroundColor: "#fff"}, 300);
	});
	
	
	$('#philanthropy').hover(function(){
		$(this).fadeTo(300,.7);
		}, function () {
		$(this).fadeTo(300,1);
	});
	
});

