/*function to switch menu if they are using an old version of IE*/

      $(document).ready(function() {
	  var badBrowser = (/MSIE ((5\.5)|6)/.test(navigator.userAgent) && navigator.platform == "Win32");
	  if (badBrowser) {
          $('#headerTop').load('title-nav-ie.php');
	  }
      });
