﻿/*
 *   This file runs on every page, every time they are loaded. Do not remove it, it's a core file.
 *
 */
 
 
 
 /* Init */

 $(document).ready(function(){

    // Labels for forms
    $(":text").labelify();
 
    // Datepickers for date input fields
    $('input.date').datepicker();
 
 });
 
 // Open an AJAX dialog
 function openDialog(url,title,width,height) {
    $("#dialog").dialog('destroy'); 
    // Fetch content
    $.ajax({
       type: "GET",
       url: url,
       data: "ajax=1",
       success: function(data){
           $("#dialog").html(data);
           $("#dialog").show();
       }
    });
    // Set up dialog
    $("#dialog").dialog({
        width: 500,
        height: 300,
        modal: true,
        title: title,
        cache: false,
        overlay: { background: "#000", opacity: 0.3 }
    }); 
 }
