//this is for asia pacific site use only. this file is to add US flag to all links in apac site that go to US site.

  linkIcons = function() {
    var links = document.getElementsByTagName("a");
    for (i=0; i<links.length; i++) {
      var currentLink = links[i];
      var images = currentLink.getElementsByTagName("img");
      if (images.length == 0 && ((currentLink.href.indexOf('/US/') != -1) 
																	|| (currentLink.href.indexOf('cid=us') != -1)
																	|| (currentLink.href.indexOf('website=US') != -1)
																	|| (currentLink.href.indexOf('/studentzone/') != -1)
																	|| (currentLink.href.indexOf('/tools/nspire/') != -1)
																	|| (currentLink.href.indexOf('OA_HTML/') != -1)
																	//|| (currentLink.href.indexOf('/ASIAPACIFIC') != -1)
																	|| (currentLink.href.indexOf('com/guides') != -1)													
																	)){ 
        var newImg=document.createElement('img');
        newImg.setAttribute('src','http://education.ti.com/images/icons/us-mini-space.gif');
        newImg.setAttribute('alt','this is alt text');
        newImg.setAttribute('title','You will leave Asia pacific site and will go to US site');
        newImg.setAttribute('border','0');
        currentLink.appendChild(newImg);
				currentLink.setAttribute('target','_blank');
				//currentLink.setAttribute('href','http://education.ti.com/aus-nz'); 
      }
    }
  }
  function addLoadEvent(func) {
    var oldonload = window.onload;
    if (typeof window.onload != 'function') {
      window.onload = func;
    } else {
      window.onload = function() {
        if (oldonload) {
          oldonload();
        }
        func();
      }
    }
  }
  addLoadEvent(linkIcons);  