$(document).ready(function(){ // WHEN THE DOM IS READY (JUST BEFORE THE PAGE LOADS)...

    //NEWS PAGES
    //moves the month selector to the correct year position on load of the page
    position =  $('.news_years li a#current_year').parent().index() * 27;
    $('#news_mover').attr("style", "top:-"+position+"px;");
    
    //moves the month on click of the years
    $('.news_years li a').click(function()
	{
		var news_mover = $('#news_mover'),
        position =  $(this).parent().index() * 27;
        news_mover.attr("style", "top:-"+position+"px;");	
    })

    //$('.acms_news_date_list').hide(); // hides the last news nav 
	$('.acms_news_date_list').eq(1).hide();
	$('h2.month_title').eq(1).hide();
	
	$('.news_months').hide();
	$('.news_months').eq(0).show();

	$('ul.news_years li a').click(function()
	{
		$('.news_months').hide();
		$('ul.news_years li a').removeClass('active');
		$(this).addClass('active');
		
		var currentTab = $(this).text();
		$('#' + currentTab).show();
		
		return false;
	});
})
    

