jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img />").attr("src", arguments[i]);
  }
}
$(document).ready(function() 
{
	$('#main_photos_loader li')
		.each(function()
		{
			$.preloadImages($(this).text())
		})
});