// $Id$
(function ($) {

if (!$) return;

$(function() 
{
	$('.riGalleryItem.riPreload a.riGalleryContentItemLink').each(function(i)
	{
		var href;
		href = X.attr(this, 'href');
		if (href && /(?:jpe?g|png|gif)\s*$/.test(href))
		{
			X.preloadImg(href);
		}
	});
});

})(jQuery);
