$(document).ready(function() {
	$(".png_image").load(function() {
		if(IEB) {
			if(this.loaded == null) {
				this.loaded = true;
			} else {
				this.style.visibility = 'visible';
			}
		} else {
			this.style.visibility = 'visible';
		}
	});
});
