$(document).ready(function() {
			$(".img img").each(function(){
				$(this).css( "display", "none");
				if( this.complete ){
					$(this).parent().parent().children('.st_loading').hide();
					 $(this).css( "display", "block");
				}
				$(".img img").load(function () {
				  // run code
				   $(this).css( "display", "block");
				  $(this).parent().parent().children('.st_loading').hide();
				});
			}); 
			
			$(".img1 img").each(function(){
				$(this).css( "display", "none");
				if( this.complete ){
					$(this).parent().children('.st_loading').hide();
					 $(this).css( "display", "block");
				}
				$(".img1 img").load(function () {
					  // run code
					   $(this).css( "display", "block");
					   $(this).parent().children('.st_loading').hide();
					});
			});
			
			$(".img2 img").each(function(){
				$(this).css( "display", "none");
				if( this.complete ){
					$(this).parent().parent().children('.st_loading').hide();
					 $(this).css( "display", "block");
				}
				$(".img2 img").load(function () {
					  // run code
					   $(this).css( "display", "block");
					   $(this).parent().parent().children('.st_loading').hide();
					});
			});
			
			
 });
