// JavaScript Document
$(document).ready(function(){

	// Tab Content Css
	/*$(".tabcontent").hide();
	$("ul.tabs li:first").addClass("active");
	$(".tabcontent:first").show();*/
	
	//On Click Event
	$("ul.tabs li").click(function() {
		$("ul.tabs li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".tabcontent").hide(); //Hide all tab content
		var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
		$(activeTab).fadeIn('slow', function() {
				// Animation complete
			  }); //Fade in the active content
		return false;
	});
		
			
});
		
		
