// JavaScript Document
	function swapimg( imgpath ){	
		$('#swap').fadeOut(100, function() {
			$(this).attr({'src':imgpath});
			if (this.complete) $(this).fadeIn(300);
		});
	}
	
function jspaging(url){			
	$("#div_paging").hide();
	$("#div_paging").load(url);
	setTimeout(function(){
		$("#div_paging").fadeIn("slow");
	}, 100);
}
