function initBoxes()
{
	var holder = document.getElementById("solutions");
	if(holder)
	{
		var boxes = $("#solutions li");
		var overlayer = $("#solutions .sol");
		$(boxes).each(function(el)
		{
			$(boxes[el]).hover
			(
				function ()
				{
					$(overlayer[el]).animate({"top": 200, "left": -200, "width": 0});
				},
				function ()
				{
					$(overlayer[el]).animate({"top": 0, "left": 0, "width": 189});
				}
			);
		});
	}
}

if (window.addEventListener)
{
	window.addEventListener("load", initBoxes, false);
}
else if (window.attachEvent)
{
	window.attachEvent("onload", initBoxes);
}