﻿$(document).ready(function(){
    var widths='400px';
    var heights='420px';
    var vParent=$(".videolist");
   
   var cr=function()
   {
        var out="<div id=\"videoLight\" style=\"display:none;\" class=\"popupbk\"><div id='playercontainer' style='height:400px;width:400px; background-color:#999999'></div><div style='text-align:right;'><a id='vbtnClose' href='javascript:void(0)'><img src='/images/lightbox-btn-close.gif' border='0'></a></div></div>";
        $('body').append(out);
   }
   
   cr();
    
    vParent.find("a").each(function(index){
        var current=vParent.find("a").eq(index);
        current.bind('click',function(){
        var obj=$('#videoLight');
        obj.css("width",widths);
        obj.css("height",heights);
        obj.css("position","absolute");
        obj.centerScreen();
        obj.fadeIn();
        $('.media').remove();
        $('#playercontainer').append('<a class="media" href="'+current.attr('href')+'">'+current.attr('title')+'</a>');
        $('#vbtnClose').bind('click',function(){obj.fadeOut();return false;});
        $('.media').media();
        return false;
        });
    });
    
});

