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

var scripts = [
	'swfobject/swfobject.js',
	'jquery/jquery_latest.js',
	'jquery/custom.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>');
}
