$( function () {

$(".showFollowing").toggle( function () {

$(this).parent().children("img").attr("src", "images/btn/up.gif");
	$(this).parent().parent().parent().children("tr:not(:first):lt(3)").show();
	
	return false;
									  
									  }, function () {
										  $(this).parent().children("img").attr("src", "images/btn/down.gif");
										  	$(this).parent().parent().parent().children("tr:not(:first):lt(3)").hide();
	
	return false;

									  });

							});