/**
 * Global start up scripts, onload and domready's
**/


// Store the current page location
var loc = (window.location.pathname == '/')? '/index/':( (window.location.pathname.charAt(window.location.pathname.length-1) == '/' )? window.location.pathname.toLowerCase():window.location.pathname.toLowerCase()+'/' );
//alert(loc);

opened_messages = Array();

window.addEvent('domready',function(){
	//Set staging background
	if(window.location.href.indexOf('stage-') > 0){
		$$('html').setStyle('background','url(/_imgs/stage_watermark.jpg)');
	}

	//checkChanges - Handle the form changes for the forms with class='warn'.
	if(initcheckChanges)
		initcheckChanges();
});

//loadjscssfile('modal.class.js','js');

