/* ==== page Load functions called from here ===== */

/* ==== Array to store functions to be called on page load ==== */
var arrOnLoad=new Array();

/* 
	==== Function pageInit ==== 
	Author: Sailesh
	Called on pageLoad.
	Checks the length if the array. 
	If greater than 0, loops thru its length and executes the functions names in the array.
*/
function pageInit(){
	if(arrOnLoad.length > 0)
	{
		for(functionsCall=0;functionsCall<arrOnLoad.length;functionsCall++){
			eval(arrOnLoad[functionsCall]);
		}
	}
}