function attachOtherProductListEvents() {
   $( '.yHeadlineBldRed12' ).mouseover(
      function() {
         return escape( $( this ).parent().find( '.hiddenProdDesc').val() );
      }
   );
   
   $( '.imageprod' ).hover(
      function() {
         borderit( $(this).find( 'img.borderimage2' ).attr( 'id' ), '#BD2C01' );
         var src = $(this).find( 'img.imageprodrollover' ).attr( 'src' );
         
         $(this).find( 'img.imageprodrollover' ).attr( 'src', src.replace( '/main/spacer.gif', '/products/rollover_sml.gif' ) );
      },
      function() {
         borderit( $(this).find('img.borderimage2').attr( 'id' ), '#C9C9C9' );
         var src = $(this).find( 'img.imageprodrollover' ).attr( 'src' );

         $(this).find( 'img.imageprodrollover' ).attr( 'src', src.replace( '/products/rollover_sml.gif', '/main/spacer.gif' ) );
      }
   );
}

$(document).ready(
   function() {
      attachOtherProductListEvents();
      $( '.otherprodimage' ).equalizeCols();
   }
);
