$(document).ready(function(){
        
        $('#hoverimage_large').hover( 
            function()
            { 
                $(this).attr('src','/images/search_tickets_button_pushed.jpg');          
            }, 
            function() {
                $(this).attr('src', '/images/search_tickets_button.jpg');
            }
         );           
      
      
      $('#hoverimage_small').hover( 
            function()
            { 
                $(this).attr('src','/images/search_button_small_hover.jpg');          
            }, 
            function() {
                $(this).attr('src', '/images/search_button_small.jpg');
            }
         );           
      
      
      }
      
 ); 