
jQuery.preloadImage = function(image){
	jQuery("<img>").attr("src", image);
};

var preloadNavImages = function(){
	for(var i = 0; i < arguments.length; i++){
		$.preloadImage("images/navigation/" + arguments[i] + "_on.png");
	}
};

preloadNavImages("home", "products", "services", "about", "contact");