$(document).ready(function() {
 // hides the long list as soon as the DOM is ready (a little sooner than page load)
 $('#relatedlong').hide();
  
	// hides short list and shows long list on click
	$('#relatedmore').click(function() {
		$('#relatedmore').hide();
		$('#relatedlong').slideDown('fast');
		return false;
	});
});
