$(document).ready(function() {


	$('#readmore').click(
   function()
   {
if($('#contentdiv').css('display') == 'none'){
      $('#contentdiv').fadeIn('slow', function(){



  scroller  = new jsScroller(document.getElementById("Scroller-1"), 400, 200);
  scrollbar = new jsScrollbar (document.getElementById("Scrollbar-Container"), scroller, false);
	$('#sbUp').css("visibility", 'visible');
	$('#sbDown').css("visibility", 'visible');
	$('#sbT').css("visibility", 'visible');


		$('#readmore').attr("src", 'includes/imgs/info-close.png');
	});
}
else{
	      $('#contentdiv').fadeOut('slow', function(){
		$('#readmore').attr("src", 'includes/imgs/info-open.png');
	});
}
   });
$('#closecontentinner').click(
	   function()
   {
      $('#contentdiv').fadeOut('slow', function(){
		$('#readmore').attr("src", 'includes/imgs/info-open.png');
	});
   }
);
});
