// MAB-Mackay Website Javascript code
// Copyright 2008 Integral Systems (www.intesys.ca)

function main() {
	if (typeof editing != "undefined") { // To Edit or Not To Edit
		var oFCKeditor = new FCKeditor( 'editcontent' ) ;
		oFCKeditor.Width = '620' ;
		oFCKeditor.Height = '1050' ;
		oFCKeditor.BasePath = "../scripts/fckeditor/" ;
		oFCKeditor.Config['BaseHref'] = window.location.href;
		oFCKeditor.ReplaceTextarea() ;
	}

	if (document.styleSheets[0].rules)
		document.styleSheets[0].rules[32].style.display = 'none';
	else if (document.styleSheets[0].cssRules) 
		document.styleSheets[0].cssRules[33].style.display = 'none';
	menu_main('automenu_wrapper');
}