// JavaScript Document
//rename the save button on the log in page
var loginButton = document.getElementById("ctl00_ContentPlaceHolder1_2_ctl00_m_btnLogin");

if(loginButton!=null)
{
	loginButton.value = "Log In";
}
