﻿/****************************************
*Cüneyt Özem 
*Kayan yazı - Cross Browser Marquee II
*Aslı Dynamic Drive dan alınmıştır (www.dynamicdrive.com
*****************************************/
var delayb4scroll = 200; //kaymanın başlaması için gerken süre
var marqueespeed = 1 //kayma hızı 1-10
var pauseit = 1//mouse gelince dursun 1, durmasın 0


var copyspeed = marqueespeed;
var pausespeed = (pauseit == 0) ? copyspeed : 0;
var actualheight = '';


function scrollmarquee()
{
if(parseInt(cross_marquee.style.top)>(actualheight*(-1)+8))
cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px";
else 
cross_marquee.style.top=parseInt(marqueeheight)+8+"px";
}

function initializemarquee() 
{

//    var ah = document.getElementsByTagName("a");
//    for (var b = 0; b < ah.length; b++) {
//        if (ah[b].id.substring(0, 2) != "pg" && ah[b].id.substring(0, 3)!="tab") {
//            ah[b].setAttribute("onclick", "top.location = this.href");
//            if (ah[b].attachEvent) { ah[b].attachEvent("onclick", breakout) }
//        }
//    }  
//    
    cross_marquee=document.getElementById("vmarquee");
    cross_marquee.style.top=0;
    marqueeheight=document.getElementById("marqueecontainer").offsetHeight;
    actualheight=cross_marquee.offsetHeight;
    if(window.opera || navigator.userAgent.indexOf("Netscape/7")!=-1)
    {
        // opera veya netscape 7 üzeri ise çıkar
        cross_marquee.style.height=marqueeheight +"px";
        cross_marquee.style.overflow="scroll";
        return; 
    }  
    setTimeout('lefttime=setInterval("scrollmarquee()",30)',delayb4scroll);
}

function breakout() 
{
    top.location = window.event.srcElement.href;  
}

if(window.addEventListener)
window.addEventListener("load",initializemarquee,false );
else if (window.attachEvent)
window.attachEvent("onload",initializemarquee);
else if (document.getElementById)
window.onload =initializemarquee ;      




/********************************************
*Kayan yazı sonu
*********************************************/
