var htmlObjectHandler = {

	config: {
		speed: 500,
		target: '#pagecontent'
	},
	
	process: function() {
	
		tools.log($('body'));
	
		var objects = this.elements;
		
		// durchläuft alle Kind-Objekte von elements
		for(var i in objects) {
			
			// prüfen ob sich Objekt im Document befindet
			
			if($(objects[i].ref).size() >= 1) {
				tools.log('element "'+objects[i].ref+'" found');
				tools.log('current status: '+ objects[i].active);
				tools.log('------------------');
			} else {
				tools.log('element "'+objects[i].ref+'" not found');
				tools.log('current status: '+ objects[i].active);
				tools.log('------------------');
			}
			
		}
	},
	
	check: function(obj) {
		tools.log('check XAjaxResponse');
		tools.log(obj)
	},
	
	returnResponse: function(obj) {
		
	},
	
	elements: {
				
		weather : {
			ref: '.weather',
			active: false,
			hide: function() {
			
			},
			show: function() {
			
			},
			change: function() {
			
			}		
		},
		
		content : {
			ref: '.maincontent',
			active: true,
			hide: function() {
			
			},
			show: function() {
			
			},
			change: function() {
			
			}		
		}		
	}

}
