jQuery(function($){
	// set up navigation
	$('#page-header ul.nav').superfish({
	    delay:500,
	    animation:{height:'show'},
	    speed:'fast',
	    dropShadows:false
	});
	$('#page-header ul.drop-nav').css({visibility:'visible'});
	
	// Allow for href targets and still validate as strict xhtml 1.0
	$('a[rel*=external]').each(function(){
		if(this.href) this.target = "_blank";
	});
	
	// Allow for disabling auto completion on inputs and still validate 
	// as strict xhtml 1.0
	$('.disable-auto-complete').attr('autocomplete', 'off');
	
	// Insures hyperlinks used for pure javascript don't kick the user
	// to the top of the page 
	// $("a[href*='#']").click(function(){ return false; });
});
