// Tabs on Home Page

$(document).ready(function() {
	
	//When page loads...
	$(".tab_content").hide(); //Hide all content

	$("#tabs ul.tabs a:first").addClass("active").show(); //Activate first tab
	$("#tabs ul.tabs a").corner2("top");

	$(".tab_content:first").show(); //Show first tab content

	//On Click Event
	$("#tabs ul.tabs a").click(function() {
		$("#tabs ul.tabs a").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		
		$(".tab_content").hide(); //Hide all tab content
		$(this).corner2("top");
		var activeTab = $(this).attr("href"); //Find the href attribute value to identify the active tab + content
		
		$(activeTab).fadeIn(); //Fade in the active ID content
		return false;
	});

});
