$(document).ready(function() {
$('.slider .description').hide();
$('.slider .title').click(function(){
var speed = 'fast';
if($(this).text() == "More >>"){
speed = 'slow';
$(this).html('<< Less');
} else if($(this).text() == "<< Less"){
speed = 'slow';
$(this).html('More >>');
}
$(this).parent().children('.description').slideToggle(speed);
});
});