﻿/// <reference path="../jquery-1.3.2.js" />
/// <reference path="../jquery-ui-vsdoc_1.js" />

$(document).ready(function() {
    $('#tabs').tabs();

    $('#divPost').dialog({
        autoOpen: false,
        width: 640,
        title: 'Add New Classified',
        modal: true,
        resizable: false,
        close: function(event, ui) {
            $('#divPost').attr('display', 'none');
            $('#addNew').click(function() {
                openModal();
            });
        }

    });
    $('#addNew').click(function() {
        $('#divPost').dialog('open');
    });

    
});