jQuery(document).ready(function() {

	
		// Fade Icons
		jQuery("img.a").hover(
			function() {
			jQuery(this).stop().animate({"opacity": "0"}, "fast");
			},
			function() {
			jQuery(this).stop().animate({"opacity": "1"}, "fast");
		});


});
