/*--by S Lunden 2.13.2008.  used to switch backgrounds if the browser window is too small.--*/

window.onload = size
function size()
{
if(screen.availWidth<1024)
{ 
document.body.style.backgroundImage = 'none';
}
}