// Placement script, author Tushar Samant <tushar@tmetic.com>.// If elements of ids "x" and "x-content" exist, removes the latter and// puts its content in the former. Needs Yahoo Event and DOM utilities.YAHOO.util.Event.onDOMReady (function () {  var D = YAHOO.util.Dom;  var contents = D.getElementsBy(    function (e) { return e.id.match(/-content$/) }  );  if (!contents) return;  var i = 0, c;  while (c = contents[i++]) {    var t = D.get(c.id.replace(/-content$/,''));    if (t) {      t.innerHTML = c.innerHTML;      c.parentNode.removeChild(c);    }  }});