    //°°°°°°°°°°Die News

tNews=new Array();
//<![CDATA[
tNews.push('<a href="images/Fotos/01125_800_600.JPG" rel="lightbox[dogcoaching]" title="Balou"><img src="images/Fotos/01125_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01146_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 13"><img src="images/Fotos/01146_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01147_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 14"><img src="images/Fotos/01147_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01153_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 15"><img src="images/Fotos/01153_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01175_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 19"><img src="images/Fotos/01175_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01180_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 21"><img src="images/Fotos/01180_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01193_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 24"><img src="images/Fotos/01193_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01194_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 25"><img src="images/Fotos/01194_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01201_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 27"><img src="images/Fotos/01201_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01204_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 29"><img src="images/Fotos/01204_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01129_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 02"><img src="images/Fotos/01129_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01130_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 03"><img src="images/Fotos/01130_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01131_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 04"><img src="images/Fotos/01131_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01132_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 05"><img src="images/Fotos/01132_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01135_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 08"><img src="images/Fotos/01135_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01137_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 09"><img src="images/Fotos/01137_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01139_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 10"><img src="images/Fotos/01139_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01140_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 11"><img src="images/Fotos/01140_klein.JPG" /></a>');
tNews.push('<a href="images/Fotos/01141_800_600.JPG" rel="lightbox[dogcoaching]" title="dogcoaching4you 12"><img src="images/Fotos/01141_klein.JPG" /></a>');
//]]>


//°°°°°°°°°°Delimiter zwischen den einzelnen News
tDelimiter  ='';

//°°°°°°°°°°Interval in ms
tInterval   =15;

//°°°°°°°°°°Stop bei mouseover?true:false
tStop       =true;

//°°°°°°°°°°Falls Leeraum zwischen News...hier Wert erhoehen...minimum:1
tRepeat     =2;

//°°°°°°°°°°Rahmen
tBorder     ='0px';

//°°°°°°°°°°Breite
tWidth      =675;

//°°°°°°°°°°Höhe
tHeight     =180;

//Abstand Rahmen->Inhalt (top+bottom)
tPadding    =0;




/* * * * * * * * * * * * * * * * * * D E R  T I C K E R * * * * * * * * * * * * * * * * * * * * * */
IE  = document.all&&!window.opera;
DOM = document.getElementById&&!IE;

if(DOM||IE)
    {
    var tGo,
        tPos  = 0,
        tStop = tStop?'onmouseover="clearInterval(tGo)"'+ 'onmouseout="tGo=setInterval(\'DM_ticken()\','+tInterval+')"':'',
        tTxt  = tDelimiter+tNews.join(tDelimiter),
        tNews = tTxt;
        
        for(i = 1; i < tRepeat; ++i)
          {
            tNews+=tTxt;
          }
          
        document.write('<div style="overflow:hidden;border:' + tBorder +
                       ';width:' + tWidth + 'px;height:' + tHeight + 'px;' +
                       'padding:' + tPadding + 'px 0px ' + tPadding + ' px 0px;">' +
                       '<div style="position:absolute;width:' + tWidth + 'px;height:' + tHeight + 'px;'+
                       'overflow:hidden;clip:rect(0px '+tWidth+'px '+tHeight+'px 0px)">'+
                       '<span id="ticker"style="white-space:nowrap;position:relative;"' + tStop + '>' + tNews + 
                       '</span></div></div>');
        
        tObj = IE ? document.all.ticker : document.getElementById('ticker');
    
    function DM_ticken()
      {
        tOffset = tObj.offsetWidth/tRepeat;
        if(Math.abs(tPos) > tOffset)
          {
            tPos=0;
          }
        tObj.style.left=tPos+'px';
        tPos=parseInt(tPos)-1;
      }
    
    tGo=setInterval('DM_ticken()',tInterval);
    }       
      
