Event.observe(window, 'load', function() {
	$$('#thumbs li img').each(function(elem) {
		$(elem).show();
		$(elem).observe('mouseover', function(event) {
			$(elem).setStyle({cursor:"pointer"});
		});
		
		$(elem).observe('click', function(event) {
			$('big').src = Event.element(event).src.toString().replace('w=70&h=80', 'w=270&h=270');
//			$(elem).fade();
//			$(this).parent().hide('slow',function(){});
//			$('#preview').attr({src: image});
		});
	});
});