$(document).ready(function() {
    $('.read').hide();
    $('.read').before($('<div class="read-more"><a>OPEN &or;</a></div>'));
    $(".read-more").toggle(function() {
        $(this).next('.read').slideDown(500);
        $(this).html('<a>CLOSE &and;</a>');
    },function(){
        $(this).next('.read').slideUp(500);
        $(this).html('<a>OPEN &or;</a>');
    });
	
});


