//Contentpreload

function sizeup987() 
{
  $('cBig').style.top = '0px';
  $('cSmall').style.top = '-1000px';
}
function sizedown987() 
{
  $("cSmall").style.top = "0px";
  $("cBig").style.top = "-1000px";
}
function loadCorner()
{
  setTimeout('$("cBig").style.top = "-1000px";',1000);
}
addEvent(window, 'load', loadCorner);

