// JavaScript Document
/*//---------------------------------------------*/
/*// Name: SITENAME - Default Scripts			 */
/*// Language: JavaScript						 */
/*//---------------------------------------------*/


/*//---------------------------------------------*/
/*// Name: InitializeSite()						 */
/*// Desc: Entry Point for Onload Event			 */
/*//---------------------------------------------*/

function InitializeSite()
{
	if ( window.location.href.match( /^https:/i ) )
		siteRoot = secureSiteRoot;
	ModHeight();
}

/*//---------------------------------------------*/
/*// Declare/Define Global Variables			 */
/*//---------------------------------------------*/

var secureSiteRoot = "https://clients3.bannerview.com/~PLANNAME";

/*//---------------------------------------------*/
/*// Name: ModHeight()							 */
/*// Desc: Force 100% height (at Minimum)		 */
/*//---------------------------------------------*/

function ModHeight() {
	contentHeight = $("#content").height();
	windowHeight = $(window).height() - 588;
	
	if (contentHeight < windowHeight)
		$("#content").height(windowHeight);
}
