// JavaScript Document

$.preloadImages("../images/map/plane_over.png", "../images/map/research_icon_over.png", "../images/map/uni_icon_over.png", "../images/map/ship_over.png");

$(
	function()
	{
		// set up rollover
		$("img.rollover").hover(
			function()
			{
				this.src = this.src.replace("_off","_over");
			},
			function()
			{
				this.src = this.src.replace("_over","_off");
			}
		);
	}
)
