function load_video(filename, item) {
  $("#player .current").empty();
  $("#player .current").html('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="320" height="240" id="flvplayer"><param name="movie" value="/flash/FLVPlayer_Progressive.swf" /><param name="salign" value="lt" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="FlashVars" value="&MM_ComponentVersion=1&skinName=/flash/Clear_Skin_2&streamName=/flash/' + filename + '&autoPlay=true&autoRewind=true" /><embed src="/flash/FLVPlayer_Progressive.swf" flashvars="&MM_ComponentVersion=1&skinName=/flash/Clear_Skin_2&streamName=/flash/' + filename + '&autoPlay=true&autoRewind=true" quality="high" scale="noscale" width="320" height="240" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></embed></object>');
  $("#player .item").removeClass('on');
  $(item).parent().parent().addClass('on');
}
