// Image Preloader
function preloadImages() {
	document.preload = new Array();
	if (document.images) {
		for (var i = 0; i < preloadImages.arguments.length; i++) {
			document.preload[i] = new Image();
			document.preload[i].src = preloadImages.arguments[i];
		}
	}
}

// SendTo
function sendTo(who, arg) {
	site = "SpecialPhotographyMoments";
	tld  = "com";
	document.write('<a href=\"mailto:' + who + '@' + site + '.' + tld + '?' + arg + '\">');
	document.write(who + '@' + site + '.' + tld + '</a>');
}
// End -->