first = ""; alwaystrue = ""; bildzufall = ""; linkzufallfertigall = ""; myimages=new Array(); function opacity(id, opacStart, opacEnd, millisec) { //speed for each frame var speed = Math.round(millisec / 100); var timer = 1; //determine the direction for the blending, if start and end are the same nothing happens for(i = 100; i >= 0; i--) { setTimeout("changeOpac(" + i + ",'" + id + "')",(timer * speed)); timer++; } } function opacityin() { var id = 'bild1'; var timer = 1; var speed = Math.round(300 / 100); for(i = 1; i <= 100; i++) { setTimeout("changeOpac(" + i + ",'" + id + "')",(timer * speed)); timer++; } } //change the opacity for different browsers function changeOpac(opacity, id) { var object = document.getElementById(id).style; object.opacity = (opacity / 100); object.MozOpacity = (opacity / 100); object.KhtmlOpacity = (opacity / 100); object.filter = "alpha(opacity=" + opacity + ")"; if(opacity == 0) { document.getElementById('bild1').src = bildzufall; document.getElementById('bildlink').href = linkzufallfertigall; opacityin(); } } function bildertausch() { ie = (document.all) ? 1 : 0 var arr = new Array("http://www.danielhobi.ch/vorschau/bossner.jpg","http://www.danielhobi.ch/vorschau/ewar.jpg","http://www.danielhobi.ch/vorschau/gtv.jpg","http://www.danielhobi.ch/vorschau/ilbarilotto.jpg","http://www.danielhobi.ch/vorschau/lorenz.jpg","http://www.danielhobi.ch/vorschau/meb.jpg","http://www.danielhobi.ch/vorschau/premium.jpg","http://www.danielhobi.ch/vorschau/premiumk.jpg","http://www.danielhobi.ch/vorschau/premiums.jpg","http://www.danielhobi.ch/vorschau/premiumw.jpg","http://www.danielhobi.ch/vorschau/tcmollis.jpg","http://www.danielhobi.ch/vorschau/traumzyt.jpg","http://www.danielhobi.ch/vorschau/tzh.jpg","http://www.danielhobi.ch/vorschau/zueri.jpg","http://www.danielhobi.ch/vorschau/premiumb.jpg","http://www.danielhobi.ch/vorschau/slowsmoking.jpg","http://www.danielhobi.ch/vorschau/pd.jpg"); var bildo = new Array("bossner-cigars","e-war","glarner_tambourenverein_naefels","il_barilotto","lorenz_beratung","music-express_band","premium_cigars","premium_kaffee","premium_shops","premium_wein","tennisclub_mollis","traumzyt","tennis_zentrum_horgen","zueri-leu","premium_blog","slow_smoking","pd_design"); zufall = 1; zufall2 = randInt(0,16); bildzufall = arr[zufall2]; wechselo = "bild"+zufall; linkzufall = bildo[zufall2]; linkzufallfertigall = "http://www.danielhobi.ch/referenzen/"+linkzufall+".html"; alterlink = document.getElementById('bildlink').href; if(linkzufallfertigall == alterlink) { setTimeout('bildertausch()',1); } else { opacity('bild1', 100, 0, 300); setTimeout('bildertausch()',5000); } } function bilderstart() { var bildo = new Array("bossner-cigars","e-war","glarner_tambourenverein_naefels","il_barilotto","lorenz_beratung","music-express_band","premium_cigars","premium_kaffee","premium_shops","premium_wein","tennisclub_mollis","traumzyt","tennis_zentrum_horgen","zueri-leu","premium_blog","slow_smoking","pd_design"); var arr = new Array("http://www.danielhobi.ch/vorschau/bossner.jpg","http://www.danielhobi.ch/vorschau/ewar.jpg","http://www.danielhobi.ch/vorschau/gtv.jpg","http://www.danielhobi.ch/vorschau/ilbarilotto.jpg","http://www.danielhobi.ch/vorschau/lorenz.jpg","http://www.danielhobi.ch/vorschau/meb.jpg","http://www.danielhobi.ch/vorschau/premium.jpg","http://www.danielhobi.ch/vorschau/premiumk.jpg","http://www.danielhobi.ch/vorschau/premiums.jpg","http://www.danielhobi.ch/vorschau/premiumw.jpg","http://www.danielhobi.ch/vorschau/tcmollis.jpg","http://www.danielhobi.ch/vorschau/traumzyt.jpg","http://www.danielhobi.ch/vorschau/tzh.jpg","http://www.danielhobi.ch/vorschau/zueri.jpg","http://www.danielhobi.ch/vorschau/premiumb.jpg","http://www.danielhobi.ch/vorschau/slowsmoking.jpg","http://www.danielhobi.ch/vorschau/pd.jpg"); var zufall = 1; ////Preload var begrenzer = 16; for (r=0; r < begrenzer;r++) { myimages[r]=new Image(); myimages[r].src=arr[r] } bildertausch(); }