function clickaLink(x, xpar){
	if(xpar==1){
		var thislni = x;
	} else{
		var thislni = x.attr("href");
	}
	thislni = thislni.substring(2, thislni.length);
	thislni = thislni+".php";

	loadheight = $("#loader").height() +"px";
	$("#loadcontent").fadeOut("fast", function(){
		//$("#loadcontent").animate({height: loadheight});
		$("#loadcontent").height(loadheight);
		$("#loadcontent").html($("#loader").html());
		$("#loadcontent").fadeIn("fast");

		$("#loadcontent").load(thislni, function(){
			$("#loadcontent").html($("#loadcontent").html());
			newht = ($("#content").height()+ 30) +"px";
			$("#loadcontent").height(newht);
			//$("#loadcontent").animate({height: newht});
		});

	});


}
