

/* Configuration of template elements
 * Inspired by http://www.thinkvitamin.com/features/dev/the-importance-of-maintainable-javascript
 * 
 * University of Ottawa
 * Computing and Communications Services
 */

/* default domain for setting cookies */
var DEFAULT_DOMAIN = "uottawa.ca";
var STYLE_SHEETS_HOME = "http://web5.uottawa.ca/assets-templates/css/";
var PRINT_OPTIONS_STYLE_SHEET = "print-options.css";

/* default css class names */
var cssClasses={
	'expand' : 'expand' // expand a list
,	'current' : 'current' // current selection or navigation element
,	'over' : 'over' // mouseover state
,	'first' : 'first' // first element in a list or group
,	'last' : 'last' // first element in a list or group
,	'corner' : 'corner' // for adding a corner to an element
,	'jsEnabled' : 'js-enabled'
,	'wideContentPage' : 'wide-content-page'
,	'printPreview' : 'print-preview'
,	'feature' : 'feature'
,	'groupedFeatures' : 'grouped-features'
,	'serverSide' : 'server-side'
,	'oldBanner' : 'old-banner'
,	'empty' : 'empty'
}

/* id of page elements */
var idList={
	'localNav' : 'local-nav'
,	'globalNav' : 'main-globalnav'
,	'mainBanner' : 'main-banner'
,	'mainContainer' : 'main-container'
,	'mainContent' : 'main-content'
,	'secondaryContent' : 'sidebar'
,	'sectionContainer' : 'section-container'
,	'sectionDetails' : 'section-details'
,	'pageTools' : 'page-tools'
,	'printTool' : 'tools-print'
,	'emailTool' : 'tools-email'
,	'resizeTool' : 'tools-resize'
,	'resizeToolLabel' : 'tools-resize-label'
,	'resizeOptionSmall' : 'tools-resize-small'
,	'resizeOptionMedium' : 'tools-resize-medium'
,	'resizeOptionLarge' : 'tools-resize-large'
,	'quickPicksMenu' : 'quickpicks'
,	'siteSearch' : 'site-search'
,	'globalSearch' : 'global-site-search'
,	'globalSearchLabel' : 'global-site-search-label'
,	'globalSearchInput' : 'global-site-search-words'
,	'globalSearchSubmit' : 'global-site-search-submit'
,	'printOptions' : 'print-options'
,	'printButton' : 'print-button'
,	'cancelPrint' : 'cancel-print'
,	'genFeedbackLink' : 'feedback-general-link'
,	'techFeedbackLink' : 'feedback-technical-link'
,	'chLangUrl' : 'ch-lang-url'
,	'siteInfo' : 'main-siteinfo'
,	'footerContact' : 'main-statements-contact'
,	'lastUpdated' : 'last-updated'
}

/* localized text labels */
var locales = {
	'en' : {
		'tools-print' : 'Print this page'
,		'tools-email' : 'Email this page'
,		'tools-resize-label' : 'Choose a font size'
,		'tools-resize-small' : 'Small'
,		'tools-resize-medium' : 'Medium'
,		'tools-resize-large' : 'Large'
,		'print-button' : 'Print this page'
,		'cancel-print' : 'Return to page'
,		'empty-iframe' : 'This is an empty frame used for formatting purposes only.'
,		'global-site-search-action' : 'http://search.uottawa.ca/en/'
,		'global-site-search-label' : 'Search the University of Ottawa Web site'
,		'global-site-search-submit-title' : 'Search'
	},
	'fr' : {
		'tools-print' : 'Imprimer cette page'
,		'tools-email' : 'Envoyer à un ami'
,		'tools-resize-label' : 'Choisir la taille du texte'
,		'tools-resize-small' : 'Texte de petite taille'
,		'tools-resize-medium' : 'Texte de taille plus grande'
,		'tools-resize-large' : 'Texte de taille la plus grande'
,		'print-button' : 'Imprimer cette page'
,		'cancel-print' : 'Retour à la page'
,		'empty-iframe' : 'Ce cadre ne contient rien; il sert uniquement au formatage.'
,		'global-site-search-action' : 'http://search.uottawa.ca/fr/'
,		'global-site-search-label' : 'Chercher le contenu du site Web de l\'Université d\'Ottawa'
,		'global-site-search-submit-title' : 'Chercher'
	}
}