/*!
 * PrintedEasy Latest News
 *
 * @copyright Copyright ©Printed Easy 2011
 */

(function($) {
    $(document).ready(function() {
        $('#latest-news .news-item a.news-reveal').click(function(){
            var cItem = $(this).parents('.news-item');
            var cSummary = cItem.find('.news-summary');
            var cArticle = cItem.find('.news-article');

            if (cArticle.is(':hidden')) {
                $(this).text('Less...');
                cSummary.hide();
                cArticle.slideDown('fast');
            } else {
                $(this).text('More...');
                cArticle.slideUp('fast', function() {
                    cSummary.show();
                });
            }
            return false;
        });
    });
})(jQuery);
