$(document).ready(function () {	

// Add title attribute to the Home list item for all pages
	$('ul.nav li.home a').attr({ 
		title: "Home"
	});
	
// Clear input field on click (for the Map page)
	defaultValue = $('#google-map-search').val();  
	$('#google-map-search').click(function() {
		if( this.value == defaultValue ) {
			$(this).val("");
		}
	});

}); 