var global_menu_num = 6;
var about_menu_num = 3;

$(document).ready(function(){

   	$('a.bt_pagetop').hover(
       	function () {
           	$(this).queue([]).fadeTo("fast", 0);
        },
   	    function () {
       	    $(this).queue([]).fadeTo("fast", 1);
        }
	);
});
