$(document).ready(function(){
	
	//Copyright Year
	var d = new Date();
	$("#copyright span").text(d.getFullYear());	
	
	//Google Translate Plugin
	$("#lang .small").click(function(){	
		$("#loading").show();
		$("body").translate("es", $(this).attr("id"), function(){$("#loading").fadeOut(1000);});		
	});
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
		
	//When mouse rolls over
	$(".topNav").mouseover(function(){		
		$(".subNav").show().stop().animate({height:'160px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".topNav").mouseout(function(){
		$(".subNav").stop().animate({height:'0px'},{queue:false, duration:600, easing: 'easeOutBounce'}).slideUp(600);
	});
	
});
