jQuery(function() {
	jQuery('#subHeaderMenuContainerId a.notSelected')
	.css( {backgroundPosition: "0 0"} )
	.mouseover(function(){
		$(this).stop().animate({backgroundPosition:"(-200px 0)"}, {duration:500, complete:function(){
			$(this).css({color: "#ffffff"});
		}});
	})
	.mouseout(function(){
		$(this).css({color: "#000000"});
		$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:500, complete:function(){
			$(this).css({backgroundPosition:"0 0"});
		}})
	});
	
	
	jQuery('#companyDiv')
	.css( {backgroundPosition: "0 -106px"} )
	.mouseover(function(){
		$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:500});
	})
	.mouseout(function(){
		$(this).stop().animate({backgroundPosition:"(0 -106px)"}, {duration:500});
	});
	
	jQuery('#productsDiv')
	.css( {backgroundPosition: "0 -106px"} )
	.mouseover(function(){
		$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:700});
	})
	.mouseout(function(){
		$(this).stop().animate({backgroundPosition:"(0 -106px)"}, {duration:700});
	});
	
	jQuery('#projectsDiv')
	.css( {backgroundPosition: "0 -106px"} )
	.mouseover(function(){
		$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:700});
	})
	.mouseout(function(){
		$(this).stop().animate({backgroundPosition:"(0 -106px)"}, {duration:700});
	});
	
	jQuery('#contactsDiv')
	.css( {backgroundPosition: "0 -106px"} )
	.mouseover(function(){
		$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:700});
	})
	.mouseout(function(){
		$(this).stop().animate({backgroundPosition:"(0 -106px)"}, {duration:700});
	});
});