function setupLoadingAsynchronousImages(){
				jQuery('.asyncImgLoad').each(function(){
					var loader=jQuery(this);
					var imagePath=loader.attr('title');
					
					var img=new Image();
					jQuery(img).css("opacity","0.0").load(
						function(){
							loader.append(this).removeAttr('title');
							jQuery(this).css("margin","0px").css("opacity","0.0").animate({opacity:1.0},500,			
						function(){
							loader.css("background-image","none");
						});
					}).attr('src',imagePath);
				});
			}
			
			
function setupLoadingAsynchronousImagesDelay(){
	
	var async_start_timer = 0;
	var async_start_offset = 350;
				jQuery('.asyncImgLoad').each(function(){
					var loader=jQuery(this);
					var imagePath=loader.attr('title');
					
					var img=new Image();
					jQuery(img).css("opacity","0.0").load(
						function(){
							loader.append(this).removeAttr('title');
							async_start_timer+=async_start_offset;
							//console.log(async_start_timer)
							var current = jQuery(this);
							jQuery.timer(async_start_timer , function(timer){
								current.css("margin","0px").css("opacity","0.0").animate({opacity:1.0},500,			
									function(){
										loader.css("background-image","none");
									});
								timer.stop();
							});
					}).attr('src',imagePath);
				});
			}
