$(document).ready(function() {

$('#closebutton').click(
   function()
   {
if($('#contentdiv').css('display') == 'none'){
      $('#contentdiv').fadeIn('slow', function(){
		$('#readmore').attr("src", '/includes/imgs/info-close.png');
	});
$('#scrollbar1').tinyscrollbar();
}
else{
	      $('#contentdiv').fadeOut('slow', function(){
		$('#readmore').attr("src", '/includes/imgs/info-open.png');
	});
}
   });
	$('#readmore').click(
   function()
   {
if($('#contentdiv').css('display') == 'none'){
      $('#contentdiv').fadeIn('slow', function(){
		$('#readmore').attr("src", '/includes/imgs/info-close.png');
	});
$('#scrollbar1').tinyscrollbar();
}
else{
	      $('#contentdiv').fadeOut('slow', function(){
		$('#readmore').attr("src", '/includes/imgs/info-open.png');
	});
}
   });
});
