window.onload=initall;var storeCount=2;var showStore=1;var startStore=1;var linksVisible=false;function initall(){if(document.getElementById){storeCount=document.getElementById("stores").childNodes[0].nodeValue;startStore=showStore=Math.floor(Math.random()*storeCount)+1;document.getElementById("store"+showStore).style.cssText="display: inline";document.getElementById("loading").style.cssText="display: none";document.getElementById("newLocation").selectedIndex=0;document.getElementById("newLocation").onchange=jumpPage;document.getElementById("newLocation2").selectedIndex=0;document.getElementById("newLocation2").onchange=jumpPage2;var a=document.getElementById("showhidelinks");a.removeChild(a.lastChild);var c=" ";c="view our link partners...";var b=document.createTextNode(c);a.appendChild(b)}}function jumpPage(){var a=document.getElementById("newLocation");var b=a.options[a.selectedIndex].value;if(b!=""){window.location=b}}function jumpPage2(){var a=document.getElementById("newLocation2");var b=a.options[a.selectedIndex].value;if(b!=""){window.location=b}}function toggleLinks(){var a=document.getElementById("showhidelinks");a.removeChild(a.lastChild);var b=" ";if(linksVisible){linksVisible=false;b="view our link partners...";document.getElementById("links").style.cssText="display: none";document.getElementById("store"+showStore).style.cssText="display: inline"}else{linksVisible=true;b="return to sponsored links...";document.getElementById("store"+showStore).style.cssText="display: none";document.getElementById("links").style.cssText="display: inline"}var c=document.createTextNode(b);a.appendChild(c);return false}function showNextStore(){document.getElementById("store"+showStore).style.cssText="display: none";showStore++;if(showStore>storeCount){showStore=1}document.getElementById("store"+showStore).style.cssText="display: inline";return false}function showPrevStore(){document.getElementById("store"+showStore).style.cssText="display: none";showStore--;if(showStore==0){showStore=storeCount}document.getElementById("store"+showStore).style.cssText="display: inline";return false};
