jQuery(document).ready(function($){
	
	$('.year-val').click(function(){
		var year = $(this).text();
		$('.year-val').css('font-weight','normal').css('text-decoration','underline');
		
		$('.year-news').hide();
		$('#news-'+year).show();
		
		$(this).css('font-weight','bold').css('text-decoration','none');
		
		return false;
		
	});
	$('.year-val:first').click();
	
	setTimeout(function(){
		
		$("#center").shadowOn({imagepath: "/templates/ir/js/images",imageset: "3", autoresize: true, resizetimer: 1 });
		
	}, 500);

});
