$(function(){

	$(".aj a").click(function(){
		var href = $(this).attr("href");
		
		$(".aj a").css("color",null);
		$(this).css("color","#228B22");
		
		var margin = $("#annai").height();
		
		$(".margin").height( margin ).slideDown('slow');
		$("#annai").slideUp('slow');
		
		$.get( href , function( xhtml ) {
		
			var title = $(xhtml).find("h1:eq(1)").html();
			var content = $(xhtml).find("div.post").html();
			//window.alert(content);
			$("#annai").html( "<h1>" + title + "</h1>" + content );
			$("#annai").slideDown();
			$(".margin").slideUp();
		
		});
		//$("#annai").load( href + " div#content_full h1," + href + " div.post > *", function(){ $(this).show(); } );
		return false;
	});

});

