window.addEvent('domready', function() {

/*
 *Profile and Preferences hover effects
 *
 */

		$ES('.top_nav li.inactive a').each(function(element) {
			
			var fx = new Fx.Styles(element, {duration : 200, wait : false});

			if (window.ie === true) var stylesIn = { 'background-position-y' : '2px' };
			else var stylesIn = { 'background-position' : '1px 2px' };

			if (window.ie === true) var stylesOut = { 'background-position-y' : '8px' };
			else var stylesOut = { 'background-position' : '1px 8px' };

			element.addEvent('mouseenter', function(){
				fx.start(stylesIn);
			});
		 
			element.addEvent('mouseleave', function(){
				fx.start(stylesOut);
			});
		 
		});

	
});