$(function(){
 $('.title').corner();
  $('.offer').corner();
  
  $(".rollover").hover(
	function(){
		if($(this).attr("src").indexOf("-active") == -1) {
			var newSrc = $(this).attr("src").replace(".gif","-over.gif#hover");
			$(this).attr("src",newSrc);
		}
	},
	function(){
		if($(this).attr("src").indexOf("-over.gif#hover") != -1) {
			var oldSrc = $(this).attr("src").replace("-over.gif#hover",".gif");
			$(this).attr("src",oldSrc);
		}
	}
);
});


