// URLs to goto after clicking var splashGo_URL_1 = 'http://www.volkswagen.nl'; var splashGo_URL_2 = 'http://www.vwbedrijfswagens.nl'; var splashGo_URL_3 = 'http://www.vwcampers.nl'; // handle rollover etc.. function splash(i){ // deselect all buttons splash_deselect(); // set corresponding button if(i.id == 'img1' || i.id == 'bt1'){ document.getElementById('bt1').className = 'splash-button-personenwagens-selected'; }else if(i.id == 'img2'){ document.getElementById('bt2').className = 'splash-button-bedrijfswagens-selected'; }else if(i.id == 'img3'){ document.getElementById('bt3').className = 'splash-button-campers-selected'; }; }; // deselect all buttons function splash_deselect(){ document.getElementById('bt1').className = 'splash-button-personenwagens'; document.getElementById('bt2').className = 'splash-button-bedrijfswagens'; document.getElementById('bt3').className = 'splash-button-campers'; }; // goto location function splashGo(i){ if(i.id == 'img1' || i.id == 'bt1'){ location.href = splashGo_URL_1; }else if(i.id == 'img2'){ location.href = splashGo_URL_2; }else if(i.id == 'img3'){ location.href = splashGo_URL_3; }; };