/*
GLOBAL.JS
Global variables - even though all variables defined outsode of functions are global, those declared here are
cross-script variables so should be declared first
*/

var isIE  = /MSIE (\d+\.\d+);/.test(navigator.userAgent);
var isIE6 = /msie|MSIE 6/.test(navigator.userAgent);

