/**
 * @author finrod
 */
$(function(){
    $('a.lightbox').lightBox();
});


$(function(){
    $("#dialog").dialog({
        hide: 'highlight',
		width: 410,
		bgiframe: true,
        modal: true,
        buttons: {
            Ok: function(){
                $(this).dialog('close');
            }
        }
    });
});