// KONSTANTEN:

var vwidth = 650;
var vheight = 480;    

$(document).ready(function() {
  $("a img").each(function() {
  var link = $(this.parentNode)
    var href = link.attr('href');
    if (href.match(/\.swf$/i)||href.match(/\.jpg$/i)){
       link.addClass('ceebox');
    }
    if (href.match(/\.flv$/i)){
       link.addClass('ceeboxflv');
    }
    if (href.match(/\.pdf$/i)){
       link.addClass('ceeboxpdf');
    }
 
 });
  $('.ceebox').ceebox();
  $(".ceeboxflv").click(function() {
    $.fn.ceebox.overlay();
    
    $.fn.ceebox.popup('<div style="width:'+vwidth+',height:'+vheight+'" id="flvcontainer" rel="'+$(this).attr('href')+'"></div>',{
          width : vwidth-10,
          height : vheight-10,
                onload : function() {
                   var url =   '/fileadmin/templates/mediaplayer.swf?repeat=always&controlbar=over&displayheight='+parseInt(vheight,10)+'&stretching=exactfit&icon=true&shownavigation=true&autostart=1&file=' + encodeURIComponent('/' + $('#flvcontainer').attr('rel')) ;
            $('#flvcontainer').flash({
                  swf      :  url,
                autostart  : true,
                width     : vwidth-10,
                height    : vheight-10,
                wmode     : 'transparent'
               });
   
          }
              
              }
      );
    
   
      return false;
  });
  
  
  
}); 

