$(document).ready(function() {
	$('#nav li').hover(
		function() {
			$(this).addClass('sfhover');
		},
		function() {
			$(this).removeClass('sfhover');
		}
	);

	$('#subscribe input[type="text"]').css('color', '#999');
	$('#subscribe input[type="text"]').focus(function() {
		$(this).css('color', '#000');
		if (this.value == this.defaultValue) {
			this.value = "";
		}
	});
	$('#subscribe input[type="text"]').blur(function() {
		if ($.trim(this.value) == ""){
			this.value = (this.defaultValue ? this.defaultValue : '');
			$(this).css('color', '#999');
		}
	});

	$('.team_member').hover(
		function() {
			var member_id = "#" + $(this).attr('id') + "_details";
			$(member_id).fadeIn('slow');
		}, function () {
			var member_id = "#" + $(this).attr('id') + "_details";
			$(member_id).fadeOut('slow');
		}
	);
});

