
		
		function rollover(item) {
		   var ntext;
		   if(item == 1 ) {
		      ntext = "Search thousands of independently owned online shops.";
		   } else if(item == 2) {
		      ntext = "Search locations of your neighborhood shops.";
		   } else if(item == 3) {
		      ntext = "Buy and Sell Antique and Collectibles Here.";
		   } else if(item == 4) {
		      ntext = "Shop for collectibles online at TIAS.com.";
		   }
		   document.getElementById("descrp-text").innerText = ntext;
		}
			
							

		function isBrowserIE() {
		    var bool = false;
			if(navigator.appName == "Microsoft Internet Explorer") {
			    bool = true;
		    }
	        return bool;
		}
		
		
		
		function getBrowserVersion() {
            var version;
		    if (isBrowserIE() == true) {
		        var find = navigator.userAgent.indexOf("MSIE") + 5;
			    version = parseInt(navigator.userAgent.substring(find, find +1));
		    } else {
                version = parseInt(navigator.appVersion.substring(0,1));
            }
            return version;                       
	    }
		
		
		
		function dhtmlOK() {
            var bool = false;
	       if ((isBrowserIE() == true && getBrowserVersion() >= 6) || 
              (isBrowserIE() == false && getBrowserVersion() > 4) )  {
                   bool = true;
	       }
           return bool;
        }
		
		
		
        function onloads() {
	    // DHTML does not work with some browser versions.  (check and redirect)
		    if (dhtmlOK() == true) {
			    setLinks();		
			} else {
			    location.replace("index.html");
			}
		}
		
		
