// JavaScript Document
$(document).ready(function(){
	// Controls Tabs Homepage				  
	$('#tab_container div').hide(); // Hide all divs
	$('#tab_container div:first').show(); // Show the first div
	$('#tabs ul li:first').addClass('active'); // Set the class of the first link to active
	$('#tabs ul li a').click(function(){ //When any link is clicked
		$('#tabs ul li').removeClass('active'); // Remove active class from all links
		$(this).parent().addClass('active'); //Set clicked link class to active
		var currentTab = $(this).attr('href'); // Set variable currentTab to value of href attribute of clicked link
		$('#tab_container div:visible').fadeOut('normal',function(){ //fade out visible div
			$(currentTab).fadeIn('normal') //fade in target div
		});return false;
	});
	
	// Controls Linking to Tab 4
	$('a.target_tab_4').click(function(){ //When any link is clicked
		$('#tabs ul li').removeClass('active'); // Remove active class from all links
		var currentTab = $(this).attr('href'); // Set variable currentTab to value of href attribute of clicked link
		$('#tabs ul li.tab_helping_homeowners').addClass('active');
		$('#tab_container div:visible').fadeOut('normal',function(){ //fade out visible div
			$(currentTab).fadeIn('normal') //fade in target div
		});return false;
	});
	
});
