jQuery(function($){
	var slideHolder = $("#seasonslideshow");
	$("#seasonslideshow div div p.springtitle a").click(function(e){
		slideHolder.css("top", "-" + $("#season1frame").position().top + "px");
		e.preventDefault();
	});
	$("#seasonslideshow div div p.summertitle a").click(function(e){
		slideHolder.css("top", "-" + $("#season2frame").position().top + "px");
		e.preventDefault();
	});
	$("#seasonslideshow div div p.autumntitle a").click(function(e){
		slideHolder.css("top", "-" + $("#season3frame").position().top + "px");
		e.preventDefault();
	});
	$("#seasonslideshow div div p.wintertitle a").click(function(e){
		slideHolder.css("top", "-" + $("#season4frame").position().top + "px");
		e.preventDefault();
	});
});