$(function(){
	$('.thumb a').click(function(){
		$('#enlargement img').attr('src', this.href);
		return false;
	});
	// preload rollovers
	$.preload(jQuery.map($('.thumb a'), function(obj){return obj.href;}));
});