window.onload = function () {

  var dq = $("deepquote_quotetext");
  var pos = Position.page(dq);
  window.scrollTo(pos[0], pos[1]);
  try {
    Effect.Pulsate(dq,{duration:0.15});
  } catch(ex) {}
  var dqr = $('deepquote_ref')
  dqr.onmouseover = function() { try { Element.setOpacity(dqr, 1) } catch(e) {} }
  dqr.onmouseout = function() { try { Element.setOpacity(dqr, .5) } catch(e) {} }
  dqr.onmouseout();
};
