// JavaScript Document
/*$(document).ready(function (){
	$('.hrd_nav_home a img').hover(
		function(){$(this).attr('src','images_hrd/spacer-2.png')},
		function(){$(this).attr('src','images_hrd/spacer.png')}
	)
});*/

/*$(document).ready(function (){				
	$('.hrd_nav_home a img').hover(
		function(){$(this).animate({backgroundPosition:'0px 0px'},200)},
		function(){$(this).animate({backgroundPosition:'0px -80px'},100)}
	)
});*/

$(document).ready(function (){
	$('.hrd_nav_home a img').hover(
		function(){
			//$(this).animate({opacity:0.0},1)
			$(this).animate({opacity:'0.30'},300)
			//$(this).attr('src','images_hrd/spacer-2.png')
			
			},
		function(){$(this).animate({opacity:'0.0'},200)}
	)
});
