var Controller = Class.create({
	View : false,

	initialize : function()
	{
		var arrArguments = arguments;
		if(this.View !== false && this.View != '')
		{
			try
			{
				eval('this.View = new '+this.View+'(arguments);');
			}
			catch(strEx){ }
		}
		this.main.apply(this, arrArguments);
	},

	main : function()
	{
		// Code Goes Here!
	}
});


var View = Class.create({

	Elements : '',

	initialize : function(arrArguments)
	{
		this.Elements = {};
		this.main.apply(this, arrArguments);
	},

	main : function()
	{
		// Code Goes Here!
	}
});
