$(document).ready(function(){
	
	$.fn.preload = function() {
    	this.each(function(){
        	$('<img/>')[0].src = this;
   		});
	}

	$(["images/news/webWork.jpg",
        "images/news/PressRelease.jpg",
		"images/news/railtexGallery.jpg"
	]).preload();
	
});
