var idx = 0;
var status_str = " :: Welcome to Gifts Divine + Design - An exclusive range of unique children's giftware for your special occasion :: ~ Bookmark us now for your next 'special' gift ~ (press CTRL+D) ";
var max_len = status_str.length;

function status2() {
  window.defaultStatus = status_str.substring(0,idx);
 
  if(idx >= max_len) {
    idx = 0;
    window.setTimeout('status2();', 10000);
  } else {
    idx++;
    window.setTimeout('status2();', 50);
  }
}


function init2() {
  window.setTimeout('status2();', 50);
}

