var global_menu_num = 6;
var cate_menu_num = 6;

$(document).ready(function(){
	for(i=1; i<=global_menu_num; i++){
    	$('a.bt_menu'+i).hover(
        	function () {
            	$(this).queue([]).fadeTo("fast", 0);
	        },
    	    function () {
        	    $(this).queue([]).fadeTo("fast", 1);
	        }
		);
	}

	for(i=1; i<=cate_menu_num; i++){
    	$('a.cate'+i).hover(
        	function () {
            	$(this).queue([]).fadeTo("fast", 0);
	        },
    	    function () {
        	    $(this).queue([]).fadeTo("fast", 1);
	        }
		);
	}

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

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