$(document).ready(function() {
	document.getElementsByTagName("BODY")[0].innerHTML = document.getElementsByTagName("BODY")[0].innerHTML.split("<!--~-wuiat-~-->").join("@");

	// do stuff when DOM is ready
	$('#nav-selectneighborhood').hover(function() {
		$('#neighborhood-dropdown').css("display", "block");
	}, function() {
		$('#neighborhood-dropdown').css("display", "none");
	});
	
	$('#navigation ul li').hover(function() {
		$(this).children('ul').css("display", "block");
		$(this).children('a').addClass('current');
	}, function() {
		$(this).children('ul').css("display", "none");
		$(this).children('a').removeClass('current');
	});
	
	$('ul.sub-subnav li').hover(function() {
		$(this).children('ul').css("display", "block");
		$(this).children('a').addClass('current');
	}, function(){
		$(this).children('ul').css("display", "none");
		$(this).children('a').removeClass('current');
	});
	
	//search set up
	var searchNote = 'Search Site...'
	
	if($('#search').val()==""){$('#search').val(searchNote)}
	
	$('#search').click(function(){if($(this).val()==searchNote){$(this).val("")}})
	$('#search').blur(function(){if($(this).val()==""){$(this).val(searchNote)}})

});