// JavaScript Document

function imageSwitch(images, id) {
	if (typeof(images) == 'object' && id != 0) {
		for (var i = 0; i < images.length; i++) {
			var obj = document.getElementById(images[i]);
			if (id == images[i]) {
				obj.style.display = 'block';
			} else {
				obj.style.display = 'none';
			}
		}
	}
}

function hotelFormSelector(value) {
	if (typeof(value) != 'undefuned' && value != '') {
		var obj = document.getElementById('rarr[33]');
		obj.value = value;
	}
}