jQuery(document).ready(function() {

	//When page loads...
	jQuery(".tabContent").hide(); //Hide all content
	jQuery("ul.tabs li:first").addClass("current").show(); //Activate first tab
	jQuery(".tabContent:first").show(); //Show first tab content

	//On Click Event
	jQuery("ul.tabs li").click(function() {

		jQuery("ul.tabs li").removeClass("current"); //Remove any "active" class
		jQuery(this).addClass("current"); //Add "active" class to selected tab
		jQuery(".tabContent").hide(); //Hide all tab content

		var activeTab = jQuery(this).find("a").attr("id"); //Find the href attribute value to identify the active tab + content
		jQuery(activeTab).fadeIn(); //Fade in the active ID content
		return true;
	});

});

WebFontConfig = {
google: { families: [ 'PT Sans', 'Lucida Grande', 'Cambria' ] }
  };
  (function() {
    var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
    '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
    s.parentNode.insertBefore(wf, s);
  })();
