function a() { t.style.top = document.body.scrollTop; b.style.top = document.body.scrollTop; }
function p()
{
	var maxheight = 1000;
	var maxwidth = 458;
	var imgs = document.getElementsByTagName("img");
	for ( var p = 0; p < imgs.length; p++ )
	{
		if ( imgs[p].getAttribute("alt") == "lol" )
		{
			var w = parseInt( imgs[p].width );
			var h = parseInt( imgs[p].height );
			if ( w > maxwidth )
			{
				h = ( maxwidth / w ) * h;
				w = maxwidth;
				imgs[p].height = h;
				imgs[p].width = w;
			}
			/*
			if ( h > maxheight )
			{
				imgs[p].width = ( maxheight / h ) * w;
				imgs[p].height = maxheight;
			}
			*/
		}
	}
}
