var UIOptimisations = {

	init: function() {
		this.hideOldBrowserInIframe();
	},

	hideOldBrowserInIframe : function() {
		if ( (window.parent.frames.length > 0) && (TemplateMode == 'iframe') )
		{
			$('.noscriptHint').hide();
		}
	}
}


function initPage() {
	UIOptimisations.init();
}

