dsg.fn.initBoxCallus = function(){
	var $allTabs = $j("#callus-default").nextAll().hide().andSelf();
	
	$j("div.box-callus div.box-header li")
		.click(function(e){
			e.preventDefault();
			$allTabs.hide();
			$j( $j(this).siblings().removeClass("active").end().addClass("active").find("a").attr("href") ).show();
			$j("div.box-callus div.box-header li.last").removeClass("activelast");
		})
	$j("div.box-callus div.box-header li.last")
		.click(function(e){
			e.preventDefault();
			$j(this).addClass("activelast");
			$j(this).siblings().removeClass("active");
		})			
		.find("a").css("outline","0");
};