$(document).ready( 
		function() {
		$('#headerCallToActionsUL').innerfade({ 
			speed: 'slow', 
			timeout: 4000, 
			type: 'sequence', 
			containerheight: '90px' 
		}); 	
		
		$('#homefeatureUL').innerfade({ 
			speed: 'slow', 
			timeout: 3000, 
			type: 'sequence', 
			containerheight: '18px' 
		}); 	
		
	$(".tabsInner").hide(); //Hide all content
	$("#tabsArea ul li:first").addClass("active"); //Activate first tab
	
	$(".tabsInner:first").show(); //Show first tab content
	
	//On Click Event
	$("#tabsArea ul li").click(function() {
		$("#tabsArea ul li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".tabsInner").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(); //Fade in the active content
		return false;
	});

}); 

