/* [nodename, id, name, navigationtext, href, isnavigation, childs[], templatename] */

if (typeof(decodeURIComponent) == 'undefined') {
  decodeURIComponent = function(s) {
    return unescape(s);
  }
}

function jdecode(s) {
    s = s.replace(/\+/g, "%20")
    return decodeURIComponent(s);
}

var POS_NODENAME=0;
var POS_ID=1;
var POS_NAME=2;
var POS_NAVIGATIONTEXT=3;
var POS_HREF=4;
var POS_ISNAVIGATION=5;
var POS_CHILDS=6;
var POS_TEMPLATENAME=7;
var theSitetree=[ 
	['PAGE','18560',jdecode('News'),jdecode(''),'/18560.html','true',[],''],
	['PAGE','55923',jdecode('Flukish+Links'),jdecode(''),'/55923.html','true',[],''],
	['PAGE','18644',jdecode('Fluke+'),jdecode(''),'/18644/home.html','true',[ 
		['PAGE','19057',jdecode('Discography+'),jdecode(''),'/18644/19057.html','false',[],''],
		['PAGE','29825',jdecode('Lyrics'),jdecode(''),'/18644/29825.html','true',[],'']
	],''],
	['PAGE','46915',jdecode('2Bit+Pie'),jdecode(''),'/46915.html','true',[],''],
	['PAGE','46441',jdecode('Justin+Credible'),jdecode(''),'/46441/home.html','true',[ 
		['PAGE','57123',jdecode('Albums'),jdecode(''),'/46441/57123.html','true',[],''],
		['PAGE','53323',jdecode('Singles'),jdecode(''),'/46441/53323.html','true',[],''],
		['PAGE','47925',jdecode('The+Tribute+Remixes'),jdecode(''),'/46441/47925.html','true',[],'']
	],'']];
var siteelementCount=10;
theSitetree.topTemplateName='Panorama';
theSitetree.paletteFamily='474C51';
theSitetree.keyvisualId='10884';
theSitetree.keyvisualName='kv_10884.jpg';
theSitetree.fontsetId='31879';
theSitetree.graphicsetId='13684';
theSitetree.contentColor='FFFFFF';
theSitetree.contentBGColor='474C51';
var theTemplate={
				name: 			'Panorama',
				paletteFamily: 	'474C51',
				keyvisualId: 	'10884',
				keyvisualName: 	'kv_10884.jpg',
				fontsetId: 		'31879',
				graphicsetId: 	'13684',
				contentColor: 	'FFFFFF',
				contentBGColor: '474C51',
				hasFlashNavigation: 'false',
				hasFlashLogo: 	'false',
				hasFlashCompanyname: 'false',
				hasFlashElements: 'false',
				hasCompanyname: 'false',
				a_color: 		'000000',
				b_color: 		'000000',
				c_color: 		'000000',
				d_color: 		'000000',
				e_color: 		'000000',
				f_color: 		'000000',
				hasCustomLogo: 	'true',
				contentFontFace:'Arial, Helvetica, sans-serif',
				contentFontSize:'12'
			  };
var webappMappings = {};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '18560',
internalId:  '',
customField: '20071229-183423'
};
webappMappings['1006']=webappMappings['1006-1006']={
webappId:    '1006',
documentId:  '18560',
internalId:  '1006',
customField: '1006'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '19057',
internalId:  '',
customField: '20061015-193616'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '29825',
internalId:  '',
customField: '20070820-203942'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '18644',
internalId:  '',
customField: '20071229-181234'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '46915',
internalId:  '',
customField: '20071229-182320'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '46441',
internalId:  '',
customField: '20071229-182941'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '47925',
internalId:  '',
customField: '20071229-164350'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '57123',
internalId:  '',
customField: '20071229-183029'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '53323',
internalId:  '',
customField: '20071229-183159'
};
webappMappings['5000']=webappMappings['5000-']={
webappId:    '5000',
documentId:  '55923',
internalId:  '',
customField: '20071229-170054'
};
var canonHostname = 'cfawrk03.aul.t-online.de';
var accountId     = 'ATOIX0INVBGZ';
var companyName   = 'JUSTIN+CREDIBLE+-+Music+in+Progress';
var htmlTitle	  = 'aDaM+bOmB+-+pRoGreSSive+mUsiC+and+mOrE';
var metaKeywords  = '0';
var metaContents  = 'selbsterstellte+renoise+songs+%26fluke+-+syntax+fanpage+mit+discography+lyrics+und+mp3+download+eigener+songs%0ATop+Ten+aktueller+Electronic-Techno+Songs+immer+aktuell';
					                                                                    
theSitetree.getById = function(id, ar) {												
							if (typeof(ar) == 'undefined')                              
								ar = this;                                              
							for (var i=0; i < ar.length; i++) {                         
								if (ar[i][POS_ID] == id)                                
									return ar[i];                                       
								if (ar[i][POS_CHILDS].length > 0) {                     
									var result=this.getById(id, ar[i][POS_CHILDS]);     
									if (result != null)                                 
										return result;                                  
								}									                    
							}                                                           
							return null;                                                
					  };                                                                
					                                                                    
theSitetree.getParentById = function(id, ar) {                                        
						if (typeof(ar) == 'undefined')                              	
							ar = this;                                             		
						for (var i=0; i < ar.length; i++) {                        		
							for (var j = 0; j < ar[i][POS_CHILDS].length; j++) {   		
								if (ar[i][POS_CHILDS][j][POS_ID] == id) {          		
									// child found                                 		
									return ar[i];                                  		
								}                                                  		
								var result=this.getParentById(id, ar[i][POS_CHILDS]);   
								if (result != null)                                 	
									return result;                                  	
							}                                                       	
						}                                                           	
						return null;                                                	
					 }								                                    
					                                                                    
theSitetree.getName = function(id) {                                                  
						var elem = this.getById(id);                                    
						if (elem != null)                                               
							return elem[POS_NAME];                                      
						return null;	                                                
					  };			                                                    
theSitetree.getNavigationText = function(id) {                                        
						var elem = this.getById(id);                                    
						if (elem != null)                                               
							return elem[POS_NAVIGATIONTEXT];                            
						return null;	                                                
					  };			                                                    
					                                                                    
theSitetree.getHREF = function(id) {                                                  
						var elem = this.getById(id);                                    
						if (elem != null)                                               
							return elem[POS_HREF];                                      
						return null;	                                                
					  };			                                                    
					                                                                    
theSitetree.getIsNavigation = function(id) {                                          
						var elem = this.getById(id);                                    
						if (elem != null)                                               
							return elem[POS_ISNAVIGATION];                              
						return null;	                                                
					  };			                                                    
					                                                                    
theSitetree.getTemplateName = function(id, lastTemplateName, ar) {             		
	                                                                                 
	if (typeof(lastTemplateName) == 'undefined')                                     
		lastTemplateName = this.topTemplateName;	                                 
	if (typeof(ar) == 'undefined')                                                   
		ar = this;                                                                   
		                                                                             
	for (var i=0; i < ar.length; i++) {                                              
		var actTemplateName = ar[i][POS_TEMPLATENAME];                               
		                                                                             
		if (actTemplateName == '')                                                   
			actTemplateName = lastTemplateName;		                                 
		                                                                             
		if (ar[i][POS_ID] == id) {                                			         
			return actTemplateName;                                                  
		}	                                                                         
		                                                                             
		if (ar[i][POS_CHILDS].length > 0) {                                          
			var result=this.getTemplateName(id, actTemplateName, ar[i][POS_CHILDS]); 
			if (result != null)                                                      
				return result;                                                       
		}									                                         
	}                                                                                
	return null;                                                                     
	};                                                                               
/* EOF */					                                                            

