/*-----------------------------------------------------------------------
Tabbing System
------------------------------------------------------------------------*/

$(function() {

	$(".tab li").click(function () {
	 
	 $(".tab li.active").removeClass("active");
	 $(this).addClass("active");
	 
	 $("#content-wrapper div").hide();
	 
	 var content_show = $(this).attr("rel");
	 $("#"+content_show).show();
	 
	 Cufon.replace('h3');
	 
	 return false;
	 	 	  
	});	

});