splashes = new Array(); 
splashes['rsvp'] = new Image();
splashes['rsvp'].src = "images/splash_rsvp.jpg"; 
splashes['map'] = new Image();
splashes['map'].src = "images/splash_map.jpg";
splashes['honeymoon'] = new Image();
splashes['honeymoon'].src = "images/splash_honeymoon.jpg";
splashes['sears'] = new Image();
splashes['sears'].src = "images/splash_sears.jpg";
splashes['target'] = new Image();
splashes['target'].src = "images/splash_target.jpg";
splashes['amazon'] = new Image();
splashes['amazon'].src = "images/splash_amazon.jpg";
splashes['homepage'] = new Image();
splashes['homepage'].src = "images/splash_homepage.jpg";

function changer(to) {
document.getElementById('splash').src = splashes[to].src;
}
