$(document).ready(function() {
	//When page loads...
	$(".tab_content").hide(); //Hide all content
	if ( $('.extracontent') ) { // If any "extracontent" is found
		$(".extracontent").hide(); //Hide all subtab content
		$(".subtabs li:first").addClass("active").show(); //Activate first tab
		$(".extracontent:first").show(); //Show first tab content
	}
	if ( !location.hash ) {
		$(".menutabs ul li:first").addClass("active").show(); //Activate first tab
		$(".tab_content:first").show(); //Show first tab content
	}
	$('.emaillink').each(function(index) {
		var addr = "mailto:";
		$('.valid',this).each(function(index) {
			addr = addr + $(this).html();
		});
		$(this).attr("href",addr);
	});
});

