    jQuery(document).ready(function(){
        $("#imageswap img").hover(function() {
            this.src = this.src.replace("_off","_on");
        }, function() {
            this.src = this.src.replace("_on","_off");
        });
        
        $("#go").hover(function() {
            this.src = this.src.replace("_off","_on");
        }, function() {
            this.src = this.src.replace("_on","_off");
        });
        
        $("#go").click(function() {
            $("#search").submit();
        });
        
    });
    
function googleTranslateElementInit() {
  new google.translate.TranslateElement({
    pageLanguage: 'en',
    layout: google.translate.TranslateElement.InlineLayout.SIMPLE
  }, 'google_translate_element');
}
