/*
 * Footer Fade Effect on hover
 */
 $(document).ready(function()
{
	$(function() {
		$("#affiliates li a figure").css("opacity","0.3");
		$("#affiliates li a figure").hover(
			function() {
				$(this).stop().animate({opacity: 1.0}, "fast");
			},
			function() {
				$(this).stop().animate({opacity: 0.3}, "fast");
			}
		);
	});
});
