
function show() {
   var now = new Date();
   var year = now.getFullYear();
   document.write(year);
}


$(function(){
	$('ul li:last-child,ol li:last-child').addClass("last");
});

$(function(){
	$('ul.groupMember li:nth-child(5n)').addClass("li05");
});

$(function(){
	$("img.rollover").hover(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"));
	},function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)_on(\.[a-z]+)$/, "$1$2"));
	});
});

$(document).ready(function() {
	$('div#achievementList').cycle();
});


$(function(){
     $("#voice ul li").click(function(){
         window.location=$(this).find("a").attr("href");
         return false;
    });
});

$(function(){
	$('#voice ul li:nth-child(2n)').addClass("li02");
});

$(function(){
  $("td:nth-child(1)").addClass("col-1");
  $("td:nth-child(2)").addClass("col-2");
});
