jQuery( document ).ready( function () {

  jQuery( 'a.logo img' ).hover(
    function () { jQuery( this ).css( 'opacity', 0.5 ); },
    function () { jQuery( this ).css( 'opacity', 1.0 ); }
  );

  jQuery( 'a.chopshoptv img' ).hover(

    function () {

      jQuery( this ).attr( 'src', 'images/content/home/chopshoptv_1.png' );

      // if IE6...
      if (window.initPNG) { initPNG( [ 'div', 'td' ] ); }
    },

    function () {

      jQuery( this ).attr( 'src', 'images/content/home/chopshoptv_0.png' );

      // if IE6...
      if (window.initPNG) { initPNG( [ 'div', 'td' ] ); }
    }
  );

} );
