$(document).ready(function() {
	$("#loading").ajaxStart(function(){
	   $(this).show();
	 });	
	$("#loading").ajaxStop(function(){
	   $(this).hide();
	 });
		
	$(".readmore").click(function() {
		var div = $(this).prev("div");
		$(div).slideToggle('slow');
		$(this).prev("div").load($(this).attr("href"), {}, function() {
			$(div).slideToggle('slow');
		});
		$(this).hide('slow');
		return false;
	});
});
