function toggle_image_onhover( objs ) {
  objs.each( function() {
    var img = $(this);
    jQuery( '<img>' ).attr( 'src', img.attr( 'src' ).replace( /off/, 'on' ) );
    img.hover(
      function() {
        img.attr( 'src', img.attr( 'src' ).replace( /off/, 'on' ) );
      },
      function() {
        img.attr( 'src', img.attr( 'src' ).replace( /on/, 'off' ) );
      }
    );
  });
}

jQuery(function($) {
  if ( $('#supertop') ) {
    flash_banner();
  }
  function flash_banner() {
    setTimeout( function() {
      $('#supertop').hide();
      setTimeout( function() {
          $('#supertop').fadeIn( 'slow' );
          flash_banner();
      }, 1000 );
    }, 7000 );
  }

  toggle_image_onhover( $('#menu a img') );
});
