function initialize() {
	if($('hotelIllustration1') != undefined) {
		Event.observe('hotelIllustration1', 'click', function(e) {
			e.preventDefault();
			$('hotelIllustrationBig').src='http://images.szallas.hu/hotels/' + hotelID + '/384x254/' + hotelIllustration1 + '.jpg';
		});
	}

	if($('hotelIllustration2') != undefined) {
		Event.observe('hotelIllustration2', 'click', function(e) {
			e.preventDefault();
			$('hotelIllustrationBig').src='http://images.szallas.hu/hotels/' + hotelID + '/384x254/' + hotelIllustration2 + '.jpg';
		});
	}

	if($('hotelIllustration3') != undefined) {
		Event.observe('hotelIllustration3', 'click', function(e) {
			e.preventDefault();
			$('hotelIllustrationBig').src='http://images.szallas.hu/hotels/' + hotelID + '/384x254/' + hotelIllustration3 + '.jpg';
		});
	}
}

try {
document.observe('dom:loaded', initialize);
}
catch(err) {}
