$(function(){
  //$('.side-panel > ul').hide();
  
  $('.showHide a').toggle(
    function(){
      $(this).text('Hide').parent().next().show();
    },
    function(){
      $(this).text('Show').parent().next().hide();
      
    }
  );    


	$('.rp-link').toggle(
		function(){
			$(this).text('expand').parent().next().hide();
		},
		function(){
			$(this).text('collapse').parent().next().show();
		}
	);


});

