/* ------------------------------------------------------------

   jsloader.js
   
------------------------------------------------------------ */

(function(){
	var importSrc = function(e){
		return '<script type="text/javascript" src="'+ e +'"></script>' + "\n";
	}
	var path = '/js/';
	
	document.write( importSrc( path + 'jquery.js' ) );
	document.write( importSrc( path + 'fontsize.js' ) );
	document.write( importSrc( path + 'share.js' ) );
	document.write( importSrc( path + 'jquery-cookie.js' ) );
	document.write( importSrc( path + 'jquery.easing.min.js' ) );
	document.write( importSrc( path + 'jquery-easing-1.3.pack.js' ) );
	document.write( importSrc( path + 'jquery-easing-compatibility.1.2.pack.js' ) );
	document.write( importSrc( path + 'external.js' ) );
		
})();

