	$(document).ready(function(){
		function preload(arrayOfImages) {
		    $(arrayOfImages).each(function(){
			$('<img/>')[0].src = this;
		    });
		}
		
		// Usage:
		
		preload([
		    "/BNT1004/wp-content/themes/bentleys/images/coffee-omlette-violin.png",
		    "/BNT1004/wp-content/themes/bentleys/images/bread-pasta-amp.png",
		    "/BNT1004/wp-content/themes/bentleys/images/dessert-coldbev-mic.png",
		    "/BNT1004/wp-content/themes/bentleys/images/cake-coffee-guitar.png",
		    "/BNT1004/wp-content/themes/bentleys/images/togo-salad-drum.png",
		    "/BNT1004/wp-content/themes/bentleys/images/icons/bagel.png",
		    "/BNT1004/wp-content/themes/bentleys/images/icons/omlette.png",
		    "/BNT1004/wp-content/themes/bentleys/images/icons/egg-fried.png",
		    "/BNT1004/wp-content/themes/bentleys/images/icons/salads.png",
		    "/BNT1004/wp-content/themes/bentleys/images/icons/sandwiches.png",
		    "/BNT1004/wp-content/themes/bentleys/images/icons/pasta-marinera.png"
		]);
	});
	
