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

