// Preload image function
$.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    $("<img>").attr("src", arguments[i]);
  }
}

jQuery(function($) {
	$.preloadImages('images/browse.jpg');
});

