
	// **************************************************************************************************************************
	//
	// Title :			cimexInit.js
	// Author : 		Ben Sekulowicz-Barclay
	//
	// Description : 	v0.1
	//
	// **************************************************************************************************************************

	var cimexInit = Class.create();

	cimexInit.prototype = {

		initialize: function() {				
			Event.observe(window, "load", this.onLoadStart, false);
		},

		// ONLOAD TRIGGERS ******************************************************************************************************

		onLoadStart: function() {					
			Element.addClassName(document.body, "cimexJs");
		}

		// FIN ******************************************************************************************************************
	};      

