$('to_fade').fade('hide');

function fadeContent()
{
  $('to_fade').fade('in');
}

window.addEvent('domready', function() {
    fadeContent();
});