    $(document).ready(function() { 
        $('ul#nav').superfish({ 
            delay:       100,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  true,                           // disable generation of arrow mark-up 
            dropShadows: false                            // disable drop shadows 
        }); 
    });
	
	

/* ----- Clear Search Form Field -------*/
var searchDefault = "Search";  // Default Search Value

$(document).ready(function() { 
		document.searchform.query.value = searchDefault;
});
function clearFormSearch() {
	if (document.searchform.query.value == searchDefault) {
		document.searchform.query.value = "";
	} 
}

function reloadFormSearch() {
	if (document.searchform.query.value == "") {
		document.searchform.query.value = searchDefault;
	} 
}


/* ObfuscateEmail() - Note: Place after JQuery include */
	function obfuscateEmail( start, end, domain, span_id, subject ){
		var glue = '@';
		var eml = start + glue + end + '.' + domain;
		if( subject != "" && subject != undefined ){ subject = '?subject' + '=' + subject; } else { subject = ""; }
		$( '#'+span_id ).html('<a href="mail' + 'to: ' + eml + subject + '">' + eml + '</a>');
	}

