(function(){

THEME_FLANBONLAND = 'flanbonland';

if(window['theme'] == undefined){ 
	window.theme = { flanbonland: {} }; 
}else{
	if(theme['flanbonland'] == undefined){
		theme.flanbonland = {};
	}
}

theme.flanbonland.Theme = new Class({

	Extends: com.alechill.Theme,
	
	name: THEME_FLANBONLAND,
	
	images: [],
	
	initialize: function(){
		this.parent();
	},
	
	destroy: function(){
		this.parent();
	}
	
});
	
})();