<!-- Button Fades -->
$(document).ready(function() {
	$('.main_content_block_footer_green,.main_content_block_footer_orange,.main_content_block_footer_blue,.main_content_block_footer_grey,.main_content_block_footer_back').append('<span class="hover"></span>').each(function () {
		var $span = $('> span.hover', this).css('opacity', 0);
		$(this).hover(function () {
			$span.stop().fadeTo(250, 1);
		}, function () {
		$span.stop().fadeTo(250, 0);
		});
	});	
});
