
// FLASH REPLACE HOME FEATURE

$(document).ready(function() {
			
	$('a#investorBtn').click(function() {
		$('#home').hide();
		$('#investor').fadeIn(400);
		$('#careers').hide();
		$('#operations').hide();
		$('#community').hide();		
		$('#environment').hide();
	});
	
	$('a#careersBtn').click(function() {
		$('#home').hide();
		$('#investor').hide();
		$('#careers').fadeIn(400);
		$('#operations').hide();
		$('#community').hide();
		$('#environment').hide();
	});
	
	$('a#operationsBtn').click(function() {
		$('#home').hide();
		$('#investor').hide();
		$('#careers').hide();
		$('#operations').fadeIn(400);
		$('#community').hide();		
		$('#environment').hide();
	});
	
	$('a#communityBtn').click(function() {
		$('#home').hide();
		$('#investor').hide();
		$('#careers').hide();
		$('#operations').hide();
		$('#community').fadeIn(400);	
		$('#environment').hide();
	});
	
	$('a#environmentBtn').click(function() {
		$('#home').hide();
		$('#investor').hide();
		$('#careers').hide();
		$('#operations').hide();
		$('#community').hide();		
		$('#environment').fadeIn(400);
	});
	
});
