$(document).ready(
	function() {
		
		// Footer affiliate hovers
		$('ul.affiliates li a').mouseover(function(){
			$(this).parent().children('span').fadeIn('fast');	
		}).mouseout(function(){
			$(this).parent().children('span').fadeOut('fast');	
		});
		
		// Open links with rel="external" in new window - like ye ole' target="_blank"
		$('a[rel="external"]').click(function() {window.open( $(this).attr('href') ); return false;});
		
	}
);

