$(function(){
		  

$('#tab-title span').click(function(){ 
	$(this).addClass("current").siblings().removeClass();
	$("."+$(this).attr("id")).show().siblings().hide(); 
}); 

$('span.case_tab ul li').click(function(){ 
    $(this).addClass("current2").siblings().removeClass(); 
    $("div.case_img > div").hide();
	$("."+$(this).attr("id")).show(); 
}); 



$("div.tc_tab ul li").click(function(){ 
	$(this).addClass("red").siblings().removeClass();
	$("."+$(this).attr("id")).show().siblings().hide(); 
}); 

$("#tab-content ul").eq(0).show();



		   
		   })



