Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

init.js 229B

123456789101112131415
  1. function init(){
  2. buttons();
  3. slideme();
  4. }
  5. function init_ie8(){
  6. buttons_ie8();
  7. slideme_ie8();
  8. }
  9. if(window.addEventListener) {
  10. window.addEventListener('load', init, false);
  11. } else {
  12. window.attachEvent("onload", init_ie8);
  13. }