	$(document).ready(function(){
		$(".article_post").hover(function() {
                $(this).stop().animate({ backgroundColor: "#FFFF99"}, 800);
                },function() {
                $(this).stop().animate({ backgroundColor: "#ffffff" }, 800);
                });
		$(".publisher_pick_content").hover(function() {
                $(this).stop().animate({ backgroundColor: "#DCEDEA"}, 800);
                },function() {
                $(this).stop().animate({ backgroundColor: "#ffffff" }, 800);
                });
		$(".sidebarcontent_block").hover(function() {
                $(this).stop().animate({ backgroundColor: "#FFFFFF"}, 800);
                },function() {
                $(this).stop().animate({ backgroundColor: "#f8f8f8" }, 800);
                });
	 });
