$(document).ready(function(){
	
	$('#top_booking').hide().delay(1500).slideDown(400);
	
	$('.feature_button').hover(function(){
		$(this).find('p').animate({
			bottom: 0
		  }, 300);
	}, function(){
		$(this).find('p').animate({
			bottom: -50
		  }, 500);
	});
	
	
	/*
	Team tabs
	*/
	
	$('.team_tab').hide();
	$('.team_tab').first().show();
	
	$('#team_tabs_headers a').click(function(){
		var targetDiv = $(this).attr('class');
		//hide all team tabs
		$('.team_tab').hide();
		//fade in target div
		$("#" + targetDiv).fadeIn("slow");
	});
	
	
});


