/**
 * @class: Start
 * @description:  Start website here
 **/
 
/**
 * Global variables
 */
var CMSBlog = new Object();
CMSBlog.uploadPdf = null;
var imgPath;

/**
 * Initializing all classes here
 */
var Start = new Class({
	initialize: function(){
		if(typeof(Util) != 'undefined'){
			imgPath = ($('imgPath')?$('imgPath').value:'');			
			CMSBlog.util = new Util();
		}		
	}			
});

/**
 * Website start here
 **/
window.addEvent('domready', function(){
	new Start();
});
