/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$().ready(function(){
    $('#extraContent #longParagraph').each(function(index){
	    $(this).hide();
    });
    $('#slideout').click(function(){
	    $('#extraContent #longParagraph').each(function(index){
		    $(this).slideUp('slow');
		    $(this).focus();
	    });
    });
    $('#slidein').click(function(){
	    $('#extraContent #longParagraph').each(function(index){
		    $(this).slideDown('slow');
		    $(this).focus();
	    });
    });
});


