var $j = jQuery.noConflict();

$j(function(){
	var pathname = window.location.href;
	var currentyear = "" + (new Date).getFullYear();		
	//set latest news link to  "Today" and changes link to main news page
	$j('#archives li a:contains(' + currentyear + ')').text('Today');
	$j('#archives li a:contains(Today)').attr('href', 'http://www.strongwell.com/news/'); //update when live
	$j('#archives li a').each(function (i) {
        if(this.href == pathname){
			$j(this).css('background-image', 'url(http://www.strongwell.com/images/sidebar-btn-active.gif)');
			$j(this).css('color', '#ffffff');
		}
      });
});
