function preloader() {
	if (document.images) {
		var img1 = new Image();
		var img2 = new Image();
		var img3 = new Image();
		var img4 = new Image();
		var img5 = new Image();
		var img6 = new Image();
		img1.src = "https://images-na.ssl-images-amazon.com/images/I/51nGOt5gOwL.jpg";
		img2.src = "https://images-na.ssl-images-amazon.com/images/I/61%2Ba0I3hnAL.jpg";
		img3.src = "https://images-na.ssl-images-amazon.com/images/I/41g5efieeLL.jpg";
		img4.src = "https://images-na.ssl-images-amazon.com/images/I/61uB1IeWLfL.jpg";
		img5.src = "https://images-na.ssl-images-amazon.com/images/I/51Ei6zZo3%2BL.jpg";
		img6.src = "https://images-na.ssl-images-amazon.com/images/I/51rLKVrzRKL.jpg";
	}
}
function addLoadEvent(func) {
	var oldonload = window.onload;
	if (typeof window.onload != 'function') {
		window.onload = func;
	} else {
		window.onload = function() {
			if (oldonload) {
				oldonload();
			}
			func();
		}
	}
}
addLoadEvent(preloader);
