 function splashChange(style){

                                    var splash1 = document.getElementById("home_splash1");
                                    var splash2 = document.getElementById("home_splash2");
                                    var splash3 = document.getElementById("home_splash3");
                                    
                                    var web=document.getElementById("web");
                                    var meaning=document.getElementById("meaning");
                                    var revolution=document.getElementById("revolution");
                                         
                                    if (style==1){
                                    splash1.style.visibility='visible';
                                    splash2.style.visibility='hidden';
                                    splash3.style.visibility='hidden';
                                    
                                    web.style.backgroundImage='url(/images/splash_selected.png)';
                                    meaning.style.backgroundImage='url()';
                                    revolution.style.backgroundImage='url()';
                                    
                                    } 

                                    if (style==2){
                                    splash1.style.visibility='hidden';
                                    splash2.style.visibility='visible';
                                    splash3.style.visibility='hidden';
                                    
                                    web.style.backgroundImage='url()';
                                    meaning.style.backgroundImage='url(/images/splash_selected.png)';
                                    revolution.style.backgroundImage='url()';
                                    } 
                                    
                                    if (style==3){
                                    splash1.style.visibility='hidden';
                                    splash2.style.visibility='hidden';
                                    splash3.style.visibility='visible';
                                    
                                    web.style.backgroundImage='url()';
                                    meaning.style.backgroundImage='url()';
                                    revolution.style.backgroundImage='url(/images/splash_selected.png)';
                                    } 
                                
                                }
