/*

This script is used to prevent the javascript error from happening if you move your mouse 
over the top nav before the page has finished loading

*/

function stopError() {
	return true;
}

window.onerror = stopError;

