var config = {
    sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)
    interval: 200, // number = milliseconds for onMouseOver polling interval
    over: function(){$('.whatshot_postit').slideDown('fast')}, // function = onMouseOver callback (REQUIRED)
    timeout: 500, // number = milliseconds delay before onMouseOut
    out: function(){$('.whatshot_postit').slideUp('fast')} // function = onMouseOut callback (REQUIRED)
};


$(document).ready(
  function(){
    $('.whatshot_button').click(function(){
        $('.whatshot_focus').hide();
        $('.whatshot_postit').hide();
        $('#'+$(this).attr('rel')).show();
        $('#'+$(this).attr('rel')+"_postit").show();
        $('.whatshot_button').removeClass('active');
        $(this).addClass('active');
        return false;
    })
});

function playFlash(id)
{
  try
  {
    flash_player = document.getElementById(id);
    flash_player.sendEvent('play');
  }
  catch(err)
  {
  //Handle errors here
  }
}
