// Fade for the Footer
jQuery(document).ready(function() {
	jQuery('#endorsement-logos a img').hover(function() {
		jQuery(this).animate({ opacity: 1.0 }, 'fast');
	}, function() {
		jQuery(this).animate({opacity: 0.4}, 'fast');
	});
});
// Link Stuff
jQuery(document).ready(function() {
	jQuery('a[rel*="external"]').addClass('external-link');
	jQuery('a').hover(function() {
		jQuery(this).css({'cursor' : 'pointer'});
	});
});