$(document).ready(function(){
		
		// TAB PANEL JS START HERE
		$(".tab-content").hide();
		$(".tab-content:first").show();
		$("ul.tabs li:first").addClass("active");
		
		//On Click Event
		$("ul.tabs li").click(function() {
			$("ul.tabs li").removeClass("active"); 
			$(this).addClass("active"); 
			$(".tab-content").hide(); 
			var activeTab = $(this).find("a").attr("href"); 
			$(activeTab).fadeIn("normal"); 
			return false;
		});
	
});
