$j(document).ready(function(){
	$j("#news_feed").parent("a").hover(
		function(){
			$j("img", this).attr("src", "images/home/news_header_feed_roll.jpg");
		},
		function(){
			$j("img", this).attr("src", "images/home/news_header_feed.jpg");
		}
	);
	
	$j("#galleries_viewall").parent("a").hover(
		function(){
			$j("img", this).attr("src", "images/home/galleries_header_viewall_roll.jpg");
		},
		function(){
			$j("img", this).attr("src", "images/home/galleries_header_viewall.jpg");
		}
	);
	
	$j("#about_moreinfo").parent("a").hover(
		function(){
			$j("img", this).attr("src", "images/home/about_header_moreinfo_roll.jpg");
		},
		function(){
			$j("img", this).attr("src", "images/home/about_header_moreinfo.jpg");
		}
	);
});