$(function(){
  
  $('.vplayer').each(function(index){
  $('<div id="video_overlay'+index+'" style="width:640px; height:480px;display: none"> </div>').appendTo('body');
   var fplayer =  $f("video_overlay"+index, "/js/flowplayer-3.1.5.swf", $(this).attr('href'));

    $(this).bind('click', function(){
    fplayer.play();
    
     $('#video_overlay'+index).modal({
       closeHTML: '<div id="vidclose" style="position: absolute;right: 13px;top: -7px;width: 22px;height: 22px;background: transparent url(/img/icons/close_greetings.png) no-repeat;cursor: pointer;">&nbsp;</div> ',
       containerCss: {width:"690px", height:"510px", position: 'absolute'},
       dataCss :{
        padding: '15px',
        background: '#FFF',
        color: '#666666'},
       overlayClose: true
      });
      
      return false;
    });
  });
  
});