// JavaScript Document

$(document).ready(function() { 
  $('div.view').hide(); 
  $('div#otherSpace').hide(); 
  $('div.slide').toggle(function() { 
    $(this).siblings('div.view').fadeIn('slow');
    $('div#otherSpace').fadeIn('slow');
  }, function() { 
    $(this).siblings('div.view').fadeOut('fast'); 
    $('div#otherSpace').fadeOut('fast'); 
    return false; 
  }); 
  $(".readmore").click(function () {
  $(this).replaceWith('<a href="#" class="readless">Read Less</a>');
  $(".readless").click(function () {
  $(this).replaceWith('<a href="#" class="readmore">Read More References</a>');
  
});
}); 
});
