	jQuery(window).bind("load",function() {
	jQuery(".project_imagelink").bind("click",function(){		
	       var cur_id = $(this).attr('id');
	       var title = jQuery("#portfolio_img_"+cur_id).attr('alt');	     
	       jQuery("#project_title").html(title);
		   jQuery("#project_detail").html(jQuery("#add_process").html());		   
	       status_data = jQuery.post(
					  "/portfolio/portfoliocontent", 
					  { id:cur_id },
					  function (data){
						  if(data.status==1){							  
							  jQuery("#add_process").hide();
							  jQuery("#project_detail").html(data.html);						 
						  }
						},
					  "json");
				});
});

