﻿/// <reference path="../js/jquery-vsdoc.js" />
$(function () {
    $("div.newsItem .text").each(function () {
        var $this = $(this);
        var S = $this.text();
        if ((/^\s*$/).test(S)) {
            $this.closest(".newsItem").find(".details").hide();
        }
    });
    $("div.newsItem a.details").toggle(function (e) {
        var $this = $(this);
        $this.closest(".newsItem").find(".text").slideDown();
        e.preventDefault();
    }, function (e) {
        var $this = $(this);
        $this.closest(".newsItem").find(".text").slideUp();
        e.preventDefault();
    }

    );
});
