/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(document).ready(function(){

  $('div.flash_video_container').each(function(){

    var id = $(this).attr('id');
    var videofile = $(this).closest('div.docs_list_item').find('a.doc_link:first-child').attr('href');
    if ( typeof(id) == 'string' && typeof(videofile) == 'string' ) {
      insertFlashPlayer(id, videofile);
    }

  });

});


function insertFlashPlayer(idVidea, video)
{
   /**
   * vložení flash prehravace s danym videem
   */
  var flashvars = {cesta: video};
  var flashparams = {
    quality: "high",
    bgcolor: "#666666",
    allowScriptAccess: "sameDomain",
    allowFullScreen: "false",
    wmode: "transparent",
    play: 'false',
    loop: 'false',
    menu: 'true',
    movie: 'kalasPlayer',
    base: '/flash/'
  };
  var flashattributes = {
    id: idVidea,
    name: idVidea
  };
  swfobject.embedSWF("/flash/kalasPlayer.swf", idVidea, "420", "315", "8.0.0", "", flashvars, flashparams, flashattributes);

}



