// CWS April 2006 - lyle [at] cws [dot] net
// Global functions called at page load/resize. These should all degrade well 
// if Javascript is turned off. They're just minor presentation tweaks that
// can't be done with pure CSS.

window.onload = function() {

	// Update - December 2006 LDM
	// Set the font size if it was previously changed by the widget
	font_size_override();

	// Initialize other CSS properties that can't be set otherwise
	equalize_columns();
	stylize_forms();
	stripe_tables_in_class('striped_table',true)
}

window.onresize = function() {
	equalize_columns();
}
