
/**
 * Script loader
 *
 */

(function () {
  var load_all = function (scripts) {
    var html = ""
    for (var i = 0; i < scripts.length; i++) {
      html += '<script type="text/javascript" src="' + baseURL + scripts[i] + '"></script>';      
    }
    document.write(html);
  }

  window.load = function (scripts) {
	  load_all(scripts)
  }
})()


/**
 * Loading configuration starts here
 */
load([ 
  // STARTLOAD
  
  'js/ext/jquery-1.4.2.js', 
  'js/ext/jquery-ui-1.7.custom.js',
  'js/ext/jquery.bgiframe.fixed.js',
  'js/ext/jquery.validate.js', 
  'js/ext/jquery.tooltip.js',
  'js/ext/jquery.jcarousel.js',
  'js/app.js',
  'js/product.js',
  'js/webtrekk/frontend_webtrekk.js',
  'js/searchsuggest.js',
  'js/searchresults.js',
  'js/ext/jquery.formidable.js',
  'js/gateway.js',
  'js/ext/swfobject-v2.2.js',
  'js/ext/jquery.listnav.min-2.1.js',
  'js/carousel.js',
  'js/jquery.plugins.js',               // some more common use jquery plugins
  'js/triumph.js',
  'js/cloud-zoom.cust.js',
  
  // must be called as last element
  'js/afterLoad.js'
  
  // ENDLOAD
])

