$(document).ready(function() {

	$(".image-gallery li a").hover(function(){
	// set the H3 to the new title
		 $(".news_inner").html("<h3><a href="+$(this).attr("href")+">"+$(this).attr("title")+"</a></h3>");
	// get new src	 
		var iconName = $(this).find("img").attr("src"); 
	// replace /t/ with /	
		iconName = iconName.replace("/t/","/b/")
	// change the bg image	
		$(".newsbox").css({'background-image' : 'url('+iconName+')'});
	// rollout function - do niothing :)!	
		},function(){

		  });
	});

