
$(document).ready(function(){
	
	$("ul.footerLinks li a").hover(
		function(){
			$(this).animate({opacity: .5}, { queue:false, duration:250 });	
		},
		function(){
			$(this).animate({opacity: 1}, { queue:false, duration:250 });
		}
	);
	
	$("a[rel=external]").click(function(){
		 window.open(this.href);
		 return false;
	});
	
});
