﻿/// <reference path="~/News.aspx" />

$(document).ready(function() {
//$('.newsArticleSummary').hide(0, dummyCallback);
    
    $('.newsItem').animate({ height: '19px' }, 0, 'easeOutSine');
    
    $('.newsItemControl').toggle(
        function() {
    //            $(this).parent().children('.newsArticleSummary').stop().show(500, dummyCallback);
            $(this).parent().stop().animate({ height: '65px' }, 800, 'easeOutSine');
            $(this).removeClass('newsItemControlExpand');
            $(this).addClass('newsItemControlCollapse');
        },
        function() {
        //            $(this).parent().children('.newsArticleSummary').stop().hide(500, dummyCallback);
            $(this).parent().stop().animate({ height: '19px' }, 800, 'easeOutSine');
            $(this).removeClass('newsItemControlCollapse');
            $(this).addClass('newsItemControlExpand');
        }
    );
});

function dummyCallback()
{
    //do nothing
}
