// preloading function of images
jQuery.preloadImages = function() {
	for ( var i = 0; i < arguments.length; i++) {
		jQuery("<img>").attr("src", arguments[i]);
	}
};

$.preloadImages("/sites/common/images/spinners/ajax-loader-bar.gif", "/sites/common/images/logos/rounded_logo.png");

