function start(){
  var aufloesung = screen.width;

  if (aufloesung > 800 && aufloesung < 1280){ 
        hintergrund('artimg/background1024.jpg');
  }
  else if (aufloesung <= 800){
      hintergrund('artimg/background800.jpg');
  }else{
      hintergrund('artimg/background2048.jpg');
  }


  if(getInternetExplorerVersion() < 7){
    if(navigator.appName == 'Microsoft Internet Explorer'){
      document.getElementById('schriftzug').src = 'artimg/schriftzug.gif';
    }
  }
}
