// JavaScript Document
    $(document).ready(function() { 
        $('ul.sf-menu').superfish({ 
            delay:       500,                            // 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 
        }); 
		$("img.menuButton").each(function () { 
			this.src = 'images/menu_' + this.alt + '.gif';
		});
		$("img.menuButton").mouseover(function(){
			this.src='images/menu_'+this.alt+'_glow.gif';
		});
		$("img.menuButton").mouseout(function(){
			this.src='images/menu_'+this.alt+'.gif';
		});
		// this corrects the color of text field when google toolbar changes them to yellow for autofill
		$("input").each(function(){
     		$(this).addClass('googleFix');
	    });
		$("select").each(function(){
     		$(this).addClass('googleFix');
		});
		 
	}); 