$(document).ready(function(){
	
	//initial load
	//$("#honoree").show();
	//$(".honoree1").parent().addClass('current');	
	
    $("#thumbnails a").click(function() {


		$honoree = $(this).attr("class");

		$(".current").removeClass('current');
		$(this).parent().addClass('current');

		$(".honoree").hide();
		
		$("hr").show();

		$("#" + $honoree).fadeIn('normal',function() {
			$('html, body').animate({scrollTop:500}, 'slow')
		});

		return false;
	});
	
	$(".rightcol em").click(function() {
		if ($(this).parent().next('blockquote').is(':hidden')) {
			$(".rightcol blockquote").slideUp();
		}
		$(this).parent().next("blockquote").slideDown();
	});
});
