/**
 * @author: Ivan Andonov
 * @email:  ivan.andonov[at]design[dot]bg
 * 
 * Javascript loader for specific page
 **/

var scripts = [
	'jquery/jquery-1.6.1.min.js',
	//'jquery/prettyPhoto/jquery.prettyPhoto.js',
	//'jquery/custom.js',
	
	'jquery/cookie/jquery.cookie.js',
	'jquery/jquery.cycle.all.min.js',
	'jquery/jquery.dimensions.js',  
	'jquery/jquery.easing.js',
	'jquery/jquery-ui-1.7.1.custom.min.js', 
	'jquery/defaultjs.js',
	
	//'ie6update/ie6update.js',
	//'swfobject/swfobject.js', 
	//'scripts.js'
];

if (!this.base) this.base = "";
if (!this.jsPath) this.jsPath = "js/";


for (var i = 0, len = scripts.length; i < len; i++) {
	document.write('<script type="text/javascript" language="javascript" src="'+base+jsPath+scripts[i]+'"></script>');
}

