

// Global JS scripts
IncludeJS('/structure/js/jquery/jquery.js');
IncludeJS('/structure/js/functions.js');	// Local functions
//IncludeJS('http://code.argentrammedia.com/sesome/injector.js');		// External functions

// Additional JS scripts
IncludeJS('/structure/js/jquery/external/shadowbox/shadowbox.js');
IncludeJS('/structure/js/jquery/external/jquery.delay.js');

//IncludeJS('/structure/content/enquiryform/enquiryform.js');
//IncludeJS('/structure/js/jquery/external/jquery.form.js');

//IncludeJS('/structure/js/jquery/ui/ui.core.js');
//IncludeJS('/structure/js/jquery/ui/ui.accordion.js');
//IncludeJS('/structure/js/jquery/ui/ui.slide.js');

// Function to load libraries

function IncludeJS(f){
	document.write('<script type="text/javascript" src="' + f + '"></scr' + 'ipt>'); 
}