$(document).ready(function(){	
	
	$('ul#nav a')
	.mouseover(function(){
		$(this).stop().animate(
			{color:"#081f3d"}, 
			{duration:300})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{color: "#FFF"}, 
			{duration:500})
	})
	
	$('a[href^="http://"]').attr({target: "_blank", title: "Opens in a new window"});
	$('a[href^="https://"]').attr({target: "_blank", title: "Opens in a new window"});

});
