///**
// * Prepare some needed objects
// */
//
Ext.onReady(function(){	

	/*
	 * Init ExtJS
	 */
	
	initDetailView();
	
	
	/*
	 * Flash
	 */
	
	var flash = document.getElementById('ppsFlash');
	
	if (flash) {
			
		var film = flash.firstChild.nodeValue;
		
		if (film) {
		
			film = film.replace (/^\s+/, '').replace (/\s+$/, '');
		
			initFlashPlayer(film);
			
		}
			
	}
	
	
	/*
	 * Create Map 
	 */


	if (typeof MapAndRouteMap == "function") {	

		var IW_COUNTRY_VALUE = "Germany";
	
		var mapElement = document.getElementById('marMap');
	
		var map = new MapAndRouteMap();
	
		map.initialize(mapElement, IW_COUNTRY_VALUE);
	
		map.doEncoding();

	}
	
})
