$(document).ready(function() {

// initial states
$('#show-hide-top3-label').show();
$('#show-hide-more').hide();
$('#show-hide-more-label').hide();

// show more
$('a#show-more').click(function() {
  $('#show-hide-top3-label').fadeOut();
	$('#show-hide-more').fadeIn();
	$('#show-hide-more-label').fadeIn();
  return false;
});

// show less
$('a#show-less').click(function() {
  $('#show-hide-more').fadeOut();
  $('#show-hide-more-label').fadeOut();
	$('#show-hide-top3-label').fadeIn();
  return false;
});

});
