function House(id, x, y) {
	this.id = id;
	this.name = '';
	this.x = x;
	this.y = y;
	this.rating = 2;
	this.cityid;
	this.shortDesc = '';
	this.picture = '';
	this.configs = new Array();
	
	this.setName = function(name) {
		this.name = name
	}
	
	this.setRating = function(rating) {
		this.rating = rating;
	}
	
	this.setCityid = function(cityid) {
		this.cityid = cityid;
	}
	
	this.setShortDesc = function(shortDesc) {
		this.shortDesc = shortDesc;
	}
	
	this.setPicture = function(picture) {
		this.picture = picture;
	}
	
	this.addConfig = function(config) {
		this.configs[this.configs.length] = config;
	}
}

function Attraction(id, x, y) {
	this.id = id;
	this.name = '';
	this.x = x;
	this.y = y;
	this.regionid;
	this.shortDesc = '';
	this.pictures = new Array();
	
	this.street = '';
	this.zip = '';
	this.city = '';
	this.phone = '';
	this.fax = '';
	this.email = '';
	this.url = '';
	
	this.approach = '';
	this.opening = '';
	
	this.setName = function(name) {
		this.name = name
	}
	
	this.setRegionid = function(regionid) {
		this.regionid = regionid;
	}
	
	this.setShortDesc = function(shortDesc) {
		this.shortDesc = shortDesc;
	}
	
	this.addPicture = function(picture) {
		this.pictures[this.pictures.length] = picture;
	}
	
	this.setStreet = function(street) {
		this.street = street;
	}
	this.setZip = function(zip) {
		this.zip = zip;
	}
	this.setCity = function(city) {
		this.city = city;
	}
	this.setPhone = function(phone) {
		this.phone = phone;
	}
	this.setFax = function(fax) {
		this.fax = fax;
	}
	this.setEmail = function(email) {
		this.email = email;
	}
	this.setUrl = function(url) {
		this.url = url;
	}
	
	this.setApproach = function(approach) {
		this.approach = approach;
	}
	this.setOpening = function(opening) {
		this.opening = opening;
	}
}