$(document).ready(function(){ 
  
  $('#eventsList').click(function(){
  	$('#featured').animate({height: 0}, "slow");
  	$('#top').animate({height: 0}, "slow");
  	$('#events').animate({height: 150}, "slow", function(){
     	$('#featuredList').attr('class','left_sidebarArrow_right');
  	  $('#featured').hide();  	
      $('#topList').attr('class','left_sidebarArrow_right');	  
  	  $('#top').hide();
  	});
  	$('#events').show();
    $(this).attr('class','left_sidebarArrow_down');
  });
  
  $('#featuredList').click(function(){
  	$('#events').animate({height: 0}, "slow");
  	$('#top').animate({height: 0}, "slow");
  	$('#featured').animate({height: 300}, "slow", function(){
    	$('#eventsList').attr('class','left_sidebarArrow_right');
  	  $('#events').hide();
  	  $('#topList').attr('class','left_sidebarArrow_right');
  	  $('#top').hide();
  	});
  	$(this).attr('class','left_sidebarArrow_down');
    $('#featured').show();  
  });
  
  $('#topList').click(function(){
  	$('#events').animate({height: 0}, "slow");
  	$('#featured').animate({height: 0}, "slow");
  	$('#top').animate({height: 175}, "slow", function(){
      $('#eventsList').attr('class','left_sidebarArrow_right');
  	  $('#events').hide();
     	$('#featuredList').attr('class','left_sidebarArrow_right');
  	  $('#featured').hide();
  	});
  	$(this).attr('class','left_sidebarArrow_down');
  	$('#top').show();
  });

});
