yepnope({
	// Load all the local files
	load: [
		'/assets/js/modernizr-1.7.min.js',
		'/assets/js/jquery-1.5.1.min.js',
		'/assets/js/jquery.hashchange.min.js',
		'/assets/js/jquery.mousewheel.js',
		'/assets/js/jquery-ui-1.8.13.min.js',
		'/assets/js/jquery.ui.selectmenu.js',
		'/assets/js/jquery.cookie.js'
	],
	complete: function() {
		yepnope({
			test: Modernizr.touch,
			yep: '/assets/js/jquery.touchwipe.min.js',
			nope: [
				'/assets/js/fileuploader.js',
				'/assets/js/swfobject.js'
			],
			complete: function() {
				yepnope({
					test: $.browser.webkit,
					// Webkit browsers will restyle the scrollbars. Others require jscrollpane
					nope: '/assets/js/jquery.jscrollpane.min.js',
					complete: function() {
						yepnope({
							// Load the main file, as well as 3rd party scripts
							load: [
								'http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0',
								'http://static.getclicky.com/js',
								'/assets/js/droga5.js'
							],
							// Check if the browser is IE 7, and load json helper
							test: $.browser.msie && $.browser.version == '7.0',
							yep: [
								'/assets/js/json2.js'
							]
						});
					}
				});
			}
		});
	}
});
