$(document).ready(function()
{
    //snow
    //$(document).snowfall();
    
$( "#video" ).dialog({autoOpen: true},{minHeight: 500},{minWidth: 800},{resizable: false},{modal: true});

$( "#newz" ).dialog({autoOpen: false},{minHeight: 500},{minWidth: 850},{resizable: false},{modal: true});

$('.new').click(function()
{
    $('#newz').dialog('open');
    
    $('#newz').html('<iframe style="height: 500px; width: 800px;" frameborder="0" src="http://vu-odense.dk/editor/ajax/get.php?id='+this.id+'"></iframe>')
    
});

});



