$(document).ready(function(){
  
  $(".slide").click(function () {
  	
  	var cssOff = {
    	"display": 'none'
  	}
  	
  	var cssOn = {
    	"display": 'block'
  	}
  	
  	$('.home_prj_txt').each(function(index) {
		  $(this).hide();
  	});
  	
  	var activeSlide = "#" + $(this).attr("id") + "-detail";
  	$(activeSlide).show();
  	
  });
  
});