//shows only the two sentences of content on landing pages to javascript-enabled browsers

$(document).ready(function () {
 //load
$('div.piece').each(function(i){
$('div.full', this).hide('fast');


$('div.full', this).after('<div class="expand" align="right"><strong>Read More >></strong></div>');
$('div.expand', this).toggle(
function(){


$(this).siblings('div.full').slideDown('slow');
$('div.footer').css({marginTop:'845px'});
$(this).html('<strong><< See Less</strong>');

},
function(){


$(this).siblings('div.full').slideUp('slow')

$('div.footer').css({marginTop:'645px'});
$(this).html('<strong>Read More >></strong>');

});
});










});




