jQuery(function(){
		
	///* z-index */
	$('img.z-swap').hover(function(){
        $(this).css('z-index', '250');
    },function(){
        $(this).css('z-index', '4');
    });
		
		
	///* menu 
	var t;
		
	fad = function(){
		t = setTimeout(function(){
			if ($(document.body).attr('id') != 'home')  $('.menu > li > a').animate({opacity: 0.01}, {duration: 'normal'});
        }, 2000);
	}
		
	hov = function(){
        $('.menu').hover(function(){
            clearTimeout(t);
            $(this).find(' > li > a').animate({opacity: 1}, { duration:150 });
        }, function(){
            fad()
        });
    }
	
	fad();
    hov();*/
        
});
