// JavaScript Document
	$(function() {
		$('#btn_menu > li b').hover(
			function () {
				var $this = $(this);
				$($this).stop(true,true).animate({'bottom':'-15px'}, 500);
			},
			function () {
				var $this = $(this);
				$($this).stop(true,true).animate({'bottom':'-97px'}, 500);
			}
		);
	});
