var root = "/i/";

function makelimit()
{
	var body = document.getElementsByTagName ("body") [0];
	body.style.width = (document.documentElement.clientWidth < 1000) ? "1000px" : "100%";
}

function preload_image(url)
{
	if(!preload_image.cache)
		preload_image.cache = new Array();

	var img = new Image();
	img.src = root + url;
	preload_image.cache.push(img);
}

// sets up some event handlers
function initialize()
{
	var ie = navigator.appName == "Microsoft Internet Explorer" && document.documentElement.clientWidth;
	if (ie)
	{
		makelimit();
		window.onresize = makelimit;

		var location_form = document.getElementById('location-form');
		if( location_form )
			location_form.style.width = (location_form.offsetWidth > 250) ? "250px" : "100%";
	}
}
