var today = new Date();
var thisYear = today.getFullYear();


function copyright(){
	var notice = '<li>&copy; Copyright <a href="/" title="Ottawa Logistics">Ottawa Logistics</a> 2011'+(thisYear > 2011 ? ' - '+thisYear : '')+'</li>';
	$('#footer-menu').prepend(notice);
}

function homePageMenu() {
	if(location.pathname == '/' || location.pathname =='/error.lasso') { $('#nav li:first').addClass('active'); }
	
}
$(document).ready( function(){
	copyright();
	homePageMenu();
});

