var jahInternetMin2008 = {
	components :{	
		urhere:{
			url:'/include/dcf/js/urhere.js',
			loaded:false
		}		
	},
	addComponent:function(component){
	if(!(document.getElementById || document.createTextNode)){return;}
		var c = this.components[component];
		if(c && c.loaded === false){
			var s = document.createElement('script');
			s.setAttribute('type', 'text/javascript');
			s.setAttribute('src',c.url);
			document.getElementsByTagName('head')[0].appendChild(s);
		}
	},
	componentAvailable:function(component){
		this.components[component].loaded = true;
		if(this.listener){
			this.listener(component);
		};
	}
};

jahInternetMin2008.listener = function(component){
if(component === 'urhere'){
	   jahEventListener.attachEventListener(window,"load",urhere_init.addYouAreHere,false);
}
//if(component === 'rotate_images2'){
		//alert('rotate images2');
//}
};

if(!jahInternetMin2008.components.urhere.loaded){jahInternetMin2008.addComponent('urhere');};
