function go()
{
	$(".contenttext a img").each(function(){
		$(this).removeAttr('width').removeAttr('height');
		imageHtml = $(this).parent().html();	
		$(this).parent().parent().prepend(imageHtml);
		$(this).parent().remove();
	});	
	
	$("li.page_item:last").children("a").css("color","red");
}
