﻿/// <reference path="jquery-1.3.2-vsdoc.js" />
/// <reference path="site.js" />

$(function() {

    $('form.news').submit(function() {
        alert('hi');
    });

    $("form.news input[type='checkbox']").click(function() {
        var ids = '';
        $("form.news input[type='checkbox']").each(function() {
            if ($(this).attr('checked')) {
                ids += (ids.length > 0 ? ',' : '') + $(this).attr('id');
            }
        });
        $.cookie('News.Categories', ids, { expires: 365 });
        window.location.href = '/news/';
    });

    $.datepicker.setDefaults($.extend({ showMonthAfterYear: false, changeMonth: true, changeYear: true }, $.datepicker.regional['ru']));

    $('#startDate').datepicker({ onSelect: function(dateText, inst) {
        $.cookie('News.StartDate', dateText, { expires: 365 });
        window.location.href = '/news/';
    }
    });
    $('#startDateIcon').click(function(e) {
        $('#startDate').datepicker('show');
    });

    $('#endDate').datepicker({ onSelect: function(dateText, inst) {
        $.cookie('News.EndDate', dateText, { expires: 365 });
        window.location.href = '/news/';
    }
    });
    $('#endDateIcon').click(function(e) {
        $('#endDate').datepicker('show');
    });

});
