﻿/// <reference path="jquery-1.2.6-vsdoc.js" />
/// <reference path="jquery.blockUI.js" />
/// <reference path="jquery.cookie.js" />
/// <reference path="common.js" />


var news = function() {

    function init(container) {
        $("#categories_container .title").click(function c() { open_post_lightBox(this); });
    }

    function open_post_lightBox(obj) {
        var item = $(obj).parents(".item");
        var lightBox_element = item.find(".lightbox_container");
        var lightbox_content = lightBox_element.find(".lb_content .item");
        common.open_lighbox(lightbox_content.clone());
//        $.blockUI({ message: lightBox_element });
//        lightbox_content.slideDown(800);
    }

    $(document).ready(init);
    return {}
} ();
