// mouseover in roms listing
$(function() {
  $('#dsroms img').tooltip({
    bodyHandler: function() {
      return '<img src="'+$(this).attr('src').replace('tiny','big')+'" />';
    },
    track: true,
    showURL: false
  })
  .hover(function() { $(this).css('cursor','pointer'); }, function() { $(this).css('cursor', ''); } );
  
  // mouseover on tr - td rom lines
  $('#dsroms tbody tr').hover(
    function() {$(this).find('td').css('background', '#7ce') },
    function() {$(this).find('td').css('background', '') }
  );
  
  // youtube video player in gba listing
  $('div.gba-item:even').css('background', '#eee');
  $('div.gba-item a.youtube').media( {type:'swf', width:450, height:380} );
  
  
  
});

