/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(function() {

    $(".flash_dialog").livequery(function(){
        $(this).dialog({
            bgiframe: false,
            modal: true,
            autoOpen: true,
            resizable: false,
            show: 'scale',
            buttons: {
                "Ok": function() {
                    $(this).dialog("close");
                }
            }

        });

    });
    $(".dialog_new").livequery(function(){
        $(this).dialog({
            bgiframe: false,
            modal: true,
            autoOpen: true,
            resizable: false,
            show: 'scale'

        });

    });

    $(".inputNeededDialog").livequery(function(){
        $(this).dialog({
            bgiframe: false,
            modal: true,
            autoOpen: true,
            resizable: false,
            show: 'scale'

        });

    });


    $('#dateInfo-cas').jclock({
        format: '%H:%M'
    });

    $("a.banner, object.banner").livequery(function(){
        $(this).click(function(){
            $.get($(this).attr("rel"));
        });

    });

 
});
