/* Settings
--------------------------------------------------------------------------------
To plug all required scripts, please replace "hostname" variable with template's folder path.
Examples:
      http://somesite.com/
      file:///D:/foldername/
*/

// Set of plugins scripts should be served as a one packed file, or include it separately?
var packed = true;

// Google analytics settings. Replace 'UA-XXXXX-X' with your own site's ID
var _gaq=[['_setAccount','UA-7587752-3'],['_trackPageview']];


/* jQuery & jQueryUI
----------------------------------------------------------------------------- */
/*document.write('<script src="'+hostname+'scripts/jquery.min.js">\x3C/script>');
document.write('<script src="'+hostname+'scripts/jquery-ui.min.js">\x3C/script>');*/


/* Conditional scripts loading, packed scripts or separate
----------------------------------------------------------------------------- */
if(packed == true) {
    document.write('<script src="'+hostname+'scripts/packed.js">\x3C/script>');
} else {
 document.write('<script src="'+hostname+'scripts/swfobject.js">\x3C/script>');
    // Sliders and galleries
}

// Scripts that are always loaded
document.write('<script src="'+hostname+'scripts/scripts.js">\x3C/script>');



// Display alert in case if hostname is false
if(hostname === false || hostname == '') {
    alert('Please, configure "hostname" variable in dispacher.js file.');
}

