var $k = jQuery.noConflict();
$k(document).ready(function() {
	//When page loads...
	$k(".tab_content").hide(); //Hide all content
	$k("ul.tabs li:first").addClass("active").show(); //Activate first tab
	$k(".tab_content:first").show(); //Show first tab content
	
	//On Click Event
	$k("ul.tabs li").click(function() {
	
		$k("ul.tabs li").removeClass("active"); //Remove any "active" class
		$k(this).addClass("active"); //Add "active" class to selected tab
		$k(".tab_content").hide(); //Hide all tab content
	
		var activeTab = $k(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
		$k(activeTab).fadeIn(); //Fade in the active ID content
		return false;
	});
	
});
