$('document').ready(function() {

	/* archive type selector */
	$('.archiveTypeOptions a').click(function() {
		$('.archiveType').hide();
		$('.archiveType').eq($('.archiveTypeOptions a').index(this)).show();
		return false;
	});

	// To top scroll
	$('a#toTop').click(function() {
		$('html, body').animate({scrollTop: 0}, 'slow');
		return false;
	});

});
