$(document).ready(function() {
	$('div.thumbinfo').hide();
	var title;
	var date;
	$('#thumbwrap div.hide').hover(function() {
		$(this).removeClass('hide');
		$('#thumbwrap div.hide img').stop().fadeTo('normal', 0.3);	
		
		title = $(this).parent().parent().find('span.thumbtitle').html();
		date = $(this).parent().parent().find('span.seriesdate').html();
		$('#series h1').stop().hide().html(title).fadeTo(150, 1);
		$('#series span.seriesdate').stop().hide().html(date).fadeTo(300, 1);
	}, function() {
		$('#thumbwrap div.hide img').stop().fadeTo('normal', 1);
		$(this).addClass('hide');
		$('#series h1').html('<br />');
		$('#series span.seriesdate').html('<br />');	
	});
	
						   
});

