// Init tc_contact_us
// Pre-DOM: Load Global resource files/libraries that are NOT dependent on the DOM being ready
// Load js
init.preload.js('lib/jquery/plugin/jquery.form.js');
init.preload.js('lib/jquery/plugin/jquery.validate.js');
init.preload.js('app/tc_contact_us/contact-us_form.js');
init.preload.js('app/contact-us.js');

// Load css
init.preload.css('contact-us.css');
init.preload.css('utility.css');
if (browser.msie7) {
  init.preload.css('ie7.css');
} else if (browser.msie6) {
  init.preload.css('ie6.css');
  init.preload.js('lib/supersleight.js'); // IE 6 only
}

// Post-DOM: Load all js files/libraries that ARE dependent on the DOM being ready
function moduleReady(){ // include items here that are not Global
	document.getElementById("page-not-found").style.display = "none";
}


