var tb = jQuery.noConflict(); 
tb(document).ready(function()
{
	tb(".tab_content").hide();
	tb("ul.tabs li:first").addClass("active").show();
	tb(".tab_content:first").show();

	tb("ul.tabs li").click(function()
       {
		tb("ul.tabs li").removeClass("active");
		tb(this).addClass("active");
		tb(".tab_content").hide();

		var activeTab = tb(this).find("a").attr("href");
		tb(activeTab).fadeIn();
		return false;
	});
});
