

jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}

$.preloadImages("../images/map.jpg","../images/goal1_thumb.jpg","../images/goal2_thumb.jpg");


$(document).ready(function(){

return false;
	
	});



