$(document).ready(function() { 
   
    $(".sign_up").mouseover(function() {
        
        $(".popup").animate({ opacity: 'show', top: '160' }, 'slow' ); 
        
    }).mouseout(function() {
        
        $(".popup").animate({ opacity: 'hide', top: '140' }, 'fast' );
        
    });
    
    $("input#search_text").focus(function() {
        
        if ($(this).val() == 'Find Australian Music' )
        {
        
            $(this).val('');
            
        }
        
    }).blur(function() {
        
        if( $(this).val() == '' )
        {
            
            $(this).val('Find Australian Music');
        
        }
        
    });
    
    $("input#search_submit").mouseover(function() {
        
        $(this).attr({ src: '/images/bg-search-submit-hover.gif' }); 
        
    }).mouseout(function() {
        
        $(this).attr({ src: '/images/bg-search-submit.gif' });
        
    });
    
});