(function($){
	var cache = [];	  
	var cacheAdv = [];
	$.preloadImages = function() {
		$('.preloadImage').each(function() {
		  var cacheImage = document.createElement('img');
		  cacheImage.src = $(this).attr('href');
		  cache.push(cacheImage);
	    })	
	}
	$.preloadImagesAdv = function() {
		$('.preloadImageAdv').each(function() {
		  var cacheImage = document.createElement('img');
		  if ($(this).attr('href'))
			  cacheImage.src = $(this).attr('href');
		  else {
			  cacheImage.src = $(this).attr('src');
			  $(this).hide();
			  $(cacheImage).data('idd',$(this));
			  $(cacheImage).load(function(){$this= $(this).data('idd'); $this.fadeIn();})
		  }
		  cacheAdv.push(cacheImage);
	    })	
  }
	$.preloadAllImages = function() {
		$('img').each(function() {
		  var cacheImage = document.createElement('img');
		  	if (!$(this).hasClass('noPreload')){
            cacheImage.src = $(this).attr('src');
            $(this).hide();
            $(cacheImage).data('idd',$(this));
            $(cacheImage).load(function(){$this= $(this).data('idd'); $this.fadeIn();})
            cacheAdv.push(cacheImage);
        }
	    })	
  }


})(jQuery);




