$(document).ready(function(){

	$('div#masthead-photo').cycle({
		timeout:	4000,
		delay:  	500, 
		speed:  	2000
	});

	// ***** highlight list item(s) based on current URL
	$("ul").find('a[href="'+document.location.href+'"]').each(function() { 
		$(this).addClass("active");
	});

	// ***** Get Directions to Location 

    $("#direction-button").click(function() {
    	window.open(toTarget());
		return false;
	});

	$("#address").focus(function() {
		if ($(this).val() == 'Your Address + Zip Here') {
			$(this).val('');
     	}
    });

	function toTarget () {
		var addr = $('#address').val();
		addr = addr.replace(/\+/g, '%2B');
		addr = addr.replace(/ /g, '+');
		var googleAddress = 'Bear+Creek+Golf+Course+Rd, Winthrop, WA';
		var txt = 'http://maps.google.com/?q=from:'+addr+'+to:+';
		txt += googleAddress;
		return txt;
	}

});