// JavaScript Document

$(document).ready(function() {
  $('li.top-link').click(function() {
  	$('li.hide').animate({height: "show", width: "show", opacity:"show"}, 'slow'); 
	$(this).hide();
	$('li.bottom-link').show();
  });
});

$(document).ready(function() {
  $('li.bottom-link').click(function() {
  	$('li.hide').animate({height: "hide", width: "hide", opacity:"hide"}, 'slow'); 
	$(this).hide();
	$('li.top-link').show();
  });
});

