var scripts = [
	// CLASSES
	// all pages
	'class/util.js', 'class/Delegate.js', 'class/Events.js', 'class/TextChanger.js', 'class/Form.js', 'class/MouseEvent.js', 'class/Box.js',
	// jquery
	'jquery/jquery.js',
		'jquery/jcarousel/jcarousel.js',
	// swfobject
	'class/swfobject.js',
	// debug
	'class/Debug.js', 'class/Keyboard.js', 'class/StringPrototype.js',
	// specific for the page
	// CUSTOM
	// all pages
	'custom/allPages.js', 'custom/textChange.js', 'custom/imagePopup.js', 
	// specific for the page
	'custom/skin.js', 'custom/navigation.js'
	
	, 'custom/zebra.js'
	, 'custom/tabs.js'
	, 'custom/rotation.js'
	, 'custom/forms.js'
	, 'custom/favourites.js'
	//, 'custom/tablePrice.js'
];

var dbg = {
	base : window.base || '',
	jsPath : window.jsPath || 'js/',
	scripts : window.scripts,
	loadScripts : function() {
		var len = this.scripts.length;
		for (var i = 0; i < len; i++) {
			document.write("\<script src='" + this.base+this.jsPath+this.scripts[i] + "' type='text/javascript'>\<\/script>" );
		}
	}
};

dbg.loadScripts();
