// When adding a custom/dynamic componant call, please comment as shown below
// Componants listed first will be pulled first, please prioritise as appropriate.
var disableAutoAjax = false;

function runCustomComponants() {
	if ( (bcbcAjax) && (!disableAutoAjax) ) { // does the bcbcAjax object exist? has autoajax been disabled (above)
		bcbcAjax.Start();
		//bcbcAjax.AddJob();
		//bcbcAjax.AddJob("url", "POST", null, "elementid");

	}
}
if (bcbcAjax) { bcbcAjax.Initialise(); } // initialize bcbcAjax object if it has been defined
window.onload = runCustomComponants;
