function text_transform(i) {
  i.innerHTML = '<input type=\'text\' style=\'font-family: ' + jQuery(i).css('font-family') + '; font-size: ' + jQuery(i).css('font-size') + '; font-weight: ' + jQuery(i).css('font-weight') + ';\' value=\'' + i.innerHTML.replace("'", "&#39;") + '\' />';
  i.onclick = null;
  _backlot_elements.push(1);
  backlot_ctrl();
  return false;
}
function text_hover(i) {
  i.style.cursor = 'crosshair';
}
var _backlot_ctrl = false;
var _backlot_elements = Array();
function backlot_ctrl() {
  if (_backlot_ctrl == false) {
    mydiv = document.createElement('div');
    mydiv.innerHTML =
    "<div style='position: fixed; bottom: 0px; width: 100%; background: #eee; border-top: 2px solid #aaa; font: 12px \"Lucida Grande\", Arial, sans-serif;'><table width='100%'><tr><td width='100'><img src='http://backlotadmin.com/images/backlot.gif' /></td><td style='color: #000;'>Now Editing Page Content - Be sure to click Save Changes when finished!</td><td align='right' style='padding-right: 30px;'><form action='http://backlotadmin.com/'><input type='submit' value='Save Changes' onclick='window.onbeforeunload = null;' style='background: #cfc; color: #000; font: 12px \"Lucida Grande\", Arial, sans-serif;' /></form></td></tr></table></div>";
    document.body.appendChild(mydiv);
    _backlot_ctrl = true;
  }
}
jQuery(document).ready(function() {
  jQuery('a').onclick = function() {
    return false;
  };
});