/*
 * Lazy loading of images. Requires jQuery and the jQuery lazyloader lib.
 */
jQuery( document ).ready( function(){
	jQuery( "img" ).each( function( idx ){
		var item = jQuery( this );
		if( !item.hasClass( "nolazyload" ) )
			item.lazyload({
				threshold : 1000,
				effect : "fadeIn",
				placeholder : "/core/gfx/pixels/grey.gif"
			});
	});
});
