
App = {
	emptyFunction : function() {},
	pageName : '',

	initialise : function() 
	{
		$('#rightRotate').innerFade({
				speed: 'slow',
				timeout: 3000,
				type: 'sequence',
				containerheight: '120px'
		});

		if (typeof this.initors[this.pageName] == 'function') 
		{
			App.initors[this.pageName]();
		} 
	}
};

App.initors = {
	'album_personal' : function()
	{	
	}
};

jQuery(document).ready(function() {	
	App.initialise();	
});