var script;

// Toogle elements based upon ID (show hide functionality).
script = document.createElement("script");
script.type = "text/javascript";
script.src = "/scripts/toggle.js";

// Focus form fields (text|textarea).
script = document.createElement("script");
script.type = "text/javascript";
script.src = "/scripts/form_focus.js";

// Animated back to top links.
script = document.createElement("script");
script.type = "text/javascript";
script.src = "/scripts/back_to_top.js";

// Append above script elements to the HTML head section.
document.getElementsByTagName("head")[0].appendChild(script);

/*
function init() {
	formFocus();
}
*/