var ProductView = {
	init: function () {
		var imageLinks = $$('.productThumb');
		imageLinks.each(function (el) {
			Event.observe(el, 'click', function (e) {
				e.stop();

				$('image').src = e.target.src;
			});
		});
	}
};

Event.observe(window, 'load', ProductView.init);