	$(document).ready(function(){	
			$('.menubutton').hover(function() {
				$(this).stop().animate({ "top" : "-5px" },150);
			}, function() {
				$(this).stop().animate({ "top" : "0px" },150);
			});	
	});
