
				
			
				
$(document).ready(function(){
	$('body').pngFix( );
	$(".dwnld span").css("opacity","0");
	$(".dwnld span").hover(function () {
	$(this).stop().animate({
	opacity: 1
	}, 500);
}, function () {
		$(this).stop().animate({
		opacity: 0
		}, 500);
	});

});
			
		
	
			
			
1
