$(document).ready(function() {
	
	// Hide on tour slider, show and slide on load
	if ($("#tour-slider").length == 1) {
		$("#tour-slider").hide().delay(1000).show('slide', {direction: 'left'}, 1000);
	};
	
	// Fade in image of previous project on hover
	$("#prev-featured-project").hover(
		function() {
			$("#featured-project-img .current-img").stop().fadeTo(450, 0);
		},
		function() {
			$("#featured-project-img .current-img").stop().fadeTo(450, 1);
		}
	);
	
	// Fade out current quote, fade in next quote
	$('#quote-container').cycle({
		fx: 'fade'
	});
	
	// Clear form input value on focus, return to original if input value is nothing
	$('#come-here-often input[type="text"]').focusin(function() {
		$(this).val("");
	});

	$('#come-here-often input[type="text"]').focusout(function() {
		if ($(this).val() == "") {
			$(this).val("Your email address");
		};
	});
	
});
