/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function() {
     
        // Init
	$('div#full-article').hide();
	$('div#featured-article').show();
        $('div.read-more').show();
        $('div.read-less').hide();
		$('div#comments-link').hide();

	// Expand featured article
	$('div.read-more span').click(function() {
                $('div.read-more').fadeOut("fast", function() {
                    $('div#full-article').slideDown('slow', function() {
                        $('div.read-less').slideDown();
                        $('div#comments-link').slideDown('slow');
                    });
                });
                });

        $('div.read-less span').click(function() {
                $('div.read-less').fadeOut("fast", function() {
                        $('div#full-article').slideUp('slow', function() {
                        $('div.read-more').slideDown();
                        });
                });
				$('div#comments-link').slideUp('fast');
        });

        });
