function get_template_part(templatename, target, postid) {
	$("#"+target+"").html('<img src="/content/themes/fem3/images/ajax-loader.gif" width="16" height="16" class="loader"/>');
 	jQuery.ajax({
		url: "/content/themes/fem3/"+templatename+".php",
		data: (postid != null) ? "id="+postid : "",
		type: "GET",
		async: true,
		cache: false,
		success: function(result,status) {
			$("#"+target+"").html(result);
		}
	});
}
