/* ================================
    Sitewide JavaScript
   ================================ */

/* If you need to preload images:

if(document.images)
{
	var myImages = new Object();
	preload_image('images/header8.png');
	preload_image('images/header9.png');
}

*/

function pageLoaded()
{
	makeDefaultingInputText({inputTarget:document.getElementById("loginuser"), defaultValue: "Username", onStyle: 40, offStyle: 41})
	makeDefaultingInputText({inputTarget:document.getElementById("loginpass"), defaultValue: "Password", onStyle: 40, offStyle: 41, isPassword: true})
	// Insert code before and after the overall template page loaded code as necessary
	sitewidePageLoaded();
}

function sendLogin()
{
	document.getElementById("loginform").submit();
}
