// $Id$
(function ($) {

if (!$) return;

$(function() 
{
	$('.riGalleryItem.riPreload a.riImageLink').each(function(i)
	{
		if (this.attr('href'))
			preloadImg(this.attr('href'));
	});
});

})(jQuery);