$(document).ready( function() {
	$('#form-query').focus(function() {
    	if ($(this).attr('value') == 'Search the Website') $(this).attr('value', '');
    }).blur(function() {
    	if ($(this).attr('value') == '') $(this).attr('value', 'Search the Website');
    });   
	
	// Replace IE6 li:hover 
	$("#layer-menu ol li").mouseover(function() {
		$(this).addClass("hover");
	});
	
  	$("#layer-menu ol li").mouseout(function() {
		$(this).removeClass("hover");
	});
});
