$(function() {
	$('#description .thumbnails a[rel]').each(function() {
		$('<img />').attr('src', $(this).attr('rel'));
		$(this).bind('mouseover', function() {
			$('#image img').attr('src', $(this).attr('rel'));
		}).bind('click', function() {
			return false;
		});
	});
});
