/**
 * @class: Start
 * @description:  Start website here
 * @author: len.nguyenvan
 * @version: 1.0 
 **/
 
/**
 * Global variables
 */
var Project = new Object();
Project.variable1 = 'variable';
	
/**
 * Initializing all classes here
 */
var Start = new Class({
	initialize: function(){
		if(typeof(Util) != 'undefined'){
			Project.util = new Util();
		}		
	}			
});

/**
 * Website start here
 **/
window.addEvent('domready', function(){
	new Start();
});


