// JavaScript Document

$(function(){
	$('.button').hover(
		function(){
			$('#nav').stop(true, false).animate({top:'0px'}, 200);
			$(this).stop(true, false).fadeTo(200,0);
	},function(){
			$('#nav').stop(true, false).animate({top:'10px'}, 200);
			$(this).stop(true, false).fadeTo(200,1);
		}
	);
});
