//JQUERY FILE TO DISPLAY TABS

$(document).ready(function(){

	//when page loads..

	$(".tab_content").hide(); //hide all tab content
	$("ul.tabs li:first").addClass("active").show(); //select first tab and make active
	$(".tab_content:first").show(); //select first tab content and make active
	
	$("ul.tabs li").click(function() {
	
		//on click event..
		
		$("ul.tabs li").removeClass("active"); //remove active tab
		$(this).addClass("active"); //make selected tab active
		$(".tab_content").hide(); //hide all tab content
		
		var activeTab = $(this).find("a").attr("href"); //find href tag from selected tag
		$(activeTab).show(); //fade in active tab content
		return false;
		
	});
});

		
		
