
jQuery(document).ready(function($){

    $('.Video').click(function () {
				
				//alert('aaaa');
                $('body').append('<div id="video"></div>');
                var flashVideo = $(this).attr('rel');

                $.colorbox({
                    inline: true,
                    href: "#video",
                    initialWidth: 50,
                    innerWidth: 660,
                    innerHeight: 390,
                    onCleanup: function () { $('#video').remove(); $('#video_wrapper').remove(); }
                });

                jwplayer("video").setup({
                    autostart: true,
                    controlbar: "none",
                    file: "/File.aspx?FileName=" + flashVideo,
                    flashplayer: "/flash/player.swf", volume: 80, width: 660, height: 390
                });

                return false;
            });

});




