$(function(){
	$('#topbt a img').hover(function(){
		var imgsrc = $(this).attr('src').replace('.','_ro.');
		$(this).attr('src',imgsrc);
		},function(){
		var imgsrc = $(this).attr('src').replace('_ro.','.');
		$(this).attr('src',imgsrc);
	});
	$('.cpage a img').hover(function(){
		var imgsrc = $(this).attr('src').replace('.','_ro.');
		$(this).attr('src',imgsrc);
		},function(){
		var imgsrc = $(this).attr('src').replace('_ro.','.');
		$(this).attr('src',imgsrc);
	});
});