// JavaScript Document

  function init() {
	startAdRotation();
	
	// if the yard sale page is requested, load the map
	if (location.href.substring(0,48) == 'http://www.1025wowcountry.com/news/yard_sale.php') {
	  initialize();	
	}
  }
  
  function uninit() {
	stopAdRotation();
	
	if (location.href.substring(0,48) == 'http://www.1025wowcountry.com/news/yard_sale.php') {
	  GUnload();	
	}
  }
  
  window.onload = init;
  window.onunload = uninit;
