jQuery(document).ready(function($) { 
	$('#nav ul, #subnav ul, #header ul.nav').superfish({ 
		delay:       0,								// .5 second delay on mouseout 
		
                                speed:         'fast',   
		dropShadows: false								// disable drop shadows 
	});

	$('form.searchform input.s').focus(function() {
		if( $(this).val() == 'Search this website...' ) {
			$(this).val('');
		}
	});
	$('form.searchform input.s').blur(function() {
		if( $(this).val() == '' ) {
			$(this).val('Search this website...');
		}
	});
	
});