var global_menu_num = 6;
var about_menu_num = 3;

$(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<=about_menu_num; i++){
    	$('a.bt_about'+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);
        }
	);

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

