$(document).ready(function(){
						   
  $('#toggleButton').mouseover(function(){
   $(this).css({textDecoration:'underline'}); //mouseover
   //$(this).css({textDecoration:'none'}); // mouseout
  });						   
  $('#toggleButton').mouseout(function(){
   $(this).css({textDecoration:'none'}); // mouseout
  });	
  $('#toggleButton').click(function(){
    $('#disclaimer').slideToggle('slow');
	$('#toggleButton').css({textDecoration:'underline'});
});
  
 $("#toggleButton").click(function(){
}).toggle( 
function(){
  $(this).text("Read Less");
},
function(){
  $(this).text("Read More");
});
 
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
});
