function check_loaded(port_id) {
	if (!port_id) { port_id = 'ppl'; }
	$(document).ready(function(){
		if(!$("#portfolio_id").html()) {
			port_load(port_id,'0');
		}
	});
}

function port_load(port_id, slide_id) {
	//navremove();

	 $(document).ready(function(){
		$(".fadeclick").click(function () {
			$("#slide").fadeOut("slow");
		});
		
		setTimeout( function (){ 
		  $.ajax({
		   type: "POST",
		   url: "include/portfolio_main.php?p=" + port_id + "&s=" + slide_id,
		   data: port_id,
		   success: function(html){
			//if (slide_id == 2)
			//	$("#portfolio_id").text(html);
			//else				
				$("#portfolio_id").html(html);
			$("div:#slide").fadeIn("slow");
			$("#bot_" + port_id).addClass("active");
			$("#slidesm_" + port_id).removeClass("off");
			$("#slidesm_" + port_id).addClass("on");
		   }
		});
		}, 500);
	 });
 }

