$(document).ready(function(){
	jQuery.preloadImages = function()
	{
		for(var i = 0; i<arguments.length; i++)
		{
			jQuery("<img>").attr("src", arguments[i]);
		}
	}
	$.preloadImages("/graphics/top-sub-nav-bottom.png", "/graphics/top-subsub-nav-bottom.png");
});