$(function() {
	var navButtons = '#genomesummary, #multifunbrowser, #symbiontlinks';
	$(navButtons).hover(function() {
	    $(this).stop().animate({'top': '-30px'});
	    },function() {
	    $(this).stop().animate({'top': '0px'});
	    });
	});

