// <![CDATA[

( function( $ )
{
    
    var PICTURE_OBJECT_SELECTOR = 'DIV#tx-ycm-artist-picture';
    var picture                 = null;
    var img                     = null;
    
    $( document ).ready( function()
    {
        picture = $( PICTURE_OBJECT_SELECTOR );
        img     = $( '<img />' );
        
        $( 'LI.tx-ycm-artist A' ).hover(
            function()
            {
                img.attr( 'class', '' );
                img.attr( 'src', $( this ).find( 'SPAN.tx-ycm-hidden' ).text() );
                img.attr( 'alt', $( this ).find( 'SPAN.tx-ycm-artist-name' ).text() );
                
                picture.append( img );
            },
            function()
            {
                img.attr( 'src', '' ).attr( 'alt', '' );
                img.attr( 'class', 'tx-ycm-hidden' );
            }
        );
        
    } );
    
} )( jQuery );

// ]]>
