$(function(){	
	$("#header .menu a[class!=current]").each(function() {		
		$(this).hover(
			function(){				
				$(this).stop();
				$(this).animate({backgroundPosition : "(0 0)"},500);			
			},
			function(){
				$(this).stop();
				$(this).animate({backgroundPosition : "(-126px 0)"},500);
			}
		)			
	});
	
	var delay=0;
	var step=150;
	$("#header .submenu a[class!=current]").each(function() {		
		$(this).css({opacity: 0});
		$(this).animate({opacity: 0}, delay).animate({opacity: 1}, 300)
		delay=delay+step;
		
		
		$(this).hover(
			function(){			
				$(this).addClass("currentSub");	
				$("#header .submenu a[class!=currentSub]").stop();
				$("#header .submenu a[class!=currentSub]").animate({opacity : .4},500);			
				$(this).animate({opacity : 1},00);			
			},
			function(){
				$(this).removeClass("currentSub");
				$("#header .submenu a[class!=currentSub]").stop();
				$("#header .submenu a[class!=currentSub]").animate({opacity : 1},500);			
				//$(this).animate({opacity : 1},500);
			}
		)
				
	});
	
	
});