window.addEvent('domready', function() {
  
  var dteNow = new Date();
  var intMonth = dteNow.getMonth();
  var strMonth = '';
	
  switch (intMonth)
  {
      case 0:  strMonth = 'January'; break;
 	  case 1:  strMonth = 'February'; break;
	  case 2:  strMonth = 'March'; break;
	  case 3:  strMonth = 'April'; break;
	  case 4:  strMonth = 'May'; break;
 	  case 5:  strMonth = 'June'; break;
	  case 6:  strMonth = 'July'; break;
	  case 7:  strMonth = 'August'; break;
	  case 8:  strMonth = 'September'; break;
	  case 9:  strMonth = 'October'; break;
	  case 10: strMonth = 'November'; break;
	  case 11: strMonth = 'December'; break;
  }
  
  var alertbox = $('alertBox');
  if(alertbox) {
	  alertbox.innerHTML  = "<img src=\"/library/images/sme/icons/zero_setup.png\" />";
	  alertbox.innerHTML += "Buy a years hosting and pay <strong>$0 setup</strong> this " + strMonth + ".";
      alertbox.style.display = "block";
  } 
  
  // mapping of page names to promo order id's.  
  var plan = new Array();
  plan['easystart']    = { 'id' : '97695', 'name' : 'Easy Start' };
  plan['economy']      = { 'id' : '97788', 'name' : 'Economy' };
  plan['business']     = { 'id' : '97790', 'name' : 'Business' };
  plan['professional'] = { 'id' : '97792', 'name' : 'Professional' };
  plan['premier']      = { 'id' : '97795', 'name' : 'Premier' };
  plan['premiera']     = { 'id' : '97797', 'name' : 'Premier Advantage' };
	
  var page = getURLParam('p');
  var baseUrl = getBaseUrl();
  var setupfee = $$('span[id=setupfee]');
  if(setupfee) {
	  setupfee.each(function(el) {		
	      var current = el.innerHTML;			
          el.innerHTML = "<strike>"+current+"</strike>";            			            
		  if (page != '') {
			  var id = plan[page]['id'];
		      var name = plan[page]['name'];
			  var orderCell = $('signup');
		  	  orderCell.innerHTML = "<a title=\"Sign up to " + name + " Web Hosting\" href=\"https://" + baseUrl + "/order-online.php?productid=" + plan[page]['id'] + "\"><img alt=\"Sign up to Business Web Hosting\" title=\"Sign up to " + name + " Web Hosting\" src=\"/library/images/sme/icons/signup2.gif\"/></a>";
		  }
	  })                 
  }

}); 