jQuery(document).ready(function() {	
	/* === Sponsors === */
	jQuery("a").css({ opacity:1});
	jQuery("a").hover(function() {
	jQuery(this).stop(true,true).animate({
			opacity:0.7
		}, "normal");
	}, function() {
	jQuery(this).stop(true,true).animate({
			opacity:1
		}, "slow");
	});
});

