// JavaScript Document

$(function(){
	$('#top-navigation img')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			if($(this).attr('class')!='active'){
				$(this).stop().animate({opacity: 0}, {duration:250});
				//$(this).stop().animate({backgroundPosition:"(0 -55px)"}, {duration:300});
			}
		})
		.mouseout(function(){
			if($(this).attr('class')!='active'){
				$(this).stop().animate({opacity: 1}, {duration:450});
				//$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:300});
			}
		})
});

//console.log('fired');
