/*
 * set.js
 *
 **/

$(function() {
	var date = new Date();
	var now_year = date.getFullYear();
	$('span#thisYear').text(now_year);
	
	//animated fade
	$('.global-nav a').hover(function(){
		$(this).stop(true, false).animate({
			opacity: .5
		},{
			duration: 300
		});
	},function(){
		$(this).stop(true, false).animate({
			opacity: 1
		},{
			duration: 300
		});
	});
});
