/**
 * @author SNAPPS INC.
 * @version 1.0
 * @classDescription Re-writes lotusFooter with branding
 */
var footer = {
	writeFooter: function (){
		var lotusFooter = document.getElementById("lotusFooter");
		if( lotusFooter ){
			var htmlOutput =  '<table cellspacing="0" width="100%"><tbody><tr>';
				htmlOutput += '<th width="20%">';
				htmlOutput += '<span><img style="float: left" src="/images/talogo.gif"></span>';
				htmlOutput += '<span style="padding: 10px; float: left">TeamAnywhere<br />';
				htmlOutput += '<a href="http://www.teamanywhere.com">www.TeamAnywhere.com</a></span>';
				htmlOutput += '</th>';
				htmlOutput += '<th width="80%" class="lotusLast" style="padding-top: 19px; vertical-align: top;">';
				htmlOutput += 'Thank you for using TeamAnywhere.';
				htmlOutput += '</th></tr></tbody></table>';
			lotusFooter.innerHTML = htmlOutput;
		}
	}
}
