/*
 * Style.js - Site specific script file
 * Any browser specific, non-css compliant kludges go here (or any othe style related logic that can't fit into css)
 */

/*
 * Create the Style namespace
 */
var Style;
if (typeof Style == 'undefined') {
	Style = {};
}

/*
* Code to be run when the document is ready
*/
Style.onready = function() {
	return;
}
