jQuery(document).ready(function(){
jQuery(".fader_a").hover(
function() {
jQuery(this).stop().animate({"opacity": "0"}, "fast");
},
function() {
jQuery(this).stop().animate({"opacity": "1"}, "fast");
});
});

jQuery(function() {
jQuery(".fadehover").hover(function() {
		jQuery(".hiddenspan" , this).show('fast');
	}, function() {
		jQuery(".hiddenspan" , this).hide('fast');
});
});
