// JavaScript Document
$(document).ready(function() {

 //hide the all of the elements with class moretext
$(".moretext").hide();      

//show the more link for users with javascript enabled
$(".morelesslink").show();      

//toggle the content to be displayed
$(".morelesslink").click(function()   {
if ($(this).prev(".moretext").is(":hidden"))
 {
$(this).html("&laquo; view less");
$(this).prev(".moretext").slideToggle(600);
$(this).addClass("less");
$(this).removeClass("more");
} else {
$(this).html("view more &raquo;");
$(this).prev(".moretext").slideToggle(600);
$(this).addClass("more");
$(this).removeClass("less");
}
});
});

