$(function(){
	$('#imageContainer img').hide().filter(':first').show();
	$('#thumbContainer a').hover(function(event) {
			$('#imageContainer img').hide().filter(this.hash).show();
		},
		function () {}
	);
	return false;
});
