function showDirections(id, link) {
	$(id).slideDown("fast");
	$(link).hide();
};

$(document).ready(function() {
	// Directions
	$("input.text").focus(function() {
		$(this).css("color", "#555555");
		if ($(this).val() == 'Enter your starting address...') {
			$(this).val('');
		}
	});
	$("input.text").blur(function() {
		if ($(this).val() == '') {
			$(this).css("color", "#aaaaaa");
			$(this).val('Enter your starting address...');
		}
	});
	
	$("form#directions-church").submit(function() {
		if (($(this).find("input.text").val() != "Enter your starting address...") && ($(this).find("input.text").val() != "")) {
			return true;
		} else {
			$(this).find("input.text").css("color", "#bd0708");
			$(this).find("input.text").val('Enter your starting address...');
			return false;
		}
	});
	
	$("form#directions-reception").submit(function() {
		if (($(this).find("input.text").val() != "Enter your starting address...") && ($(this).find("input.text").val() != "")) {
			return true;
		} else {
			$(this).find("input.text").css("color", "#bd0708");
			$(this).find("input.text").val('Enter your starting address...');
			return false;
		}
	});
	
	// Photo Gallery
	$("#photos a").fancybox();
	
	$("#photos a").fancybox({
		'hideOnContentClick': true
	});

	$("#photos a").fancybox({
		'zoomSpeedIn':	210, 
		'zoomSpeedOut':	210, 
		'overlayShow':	true
	});
});
