
<!--
// Ticker startup
function startTicker()
{
    // Define run time values
    theCurrentStory     = -1;
    theCurrentLength    = 0;
    // Locate base objects
    if (document.getElementById) { 
            theAnchorObject     = document.getElementById("tickerAnchor");
            runTheTicker();    
         }
    else {
            document.write("<style>.ticki{display:none;}.ticko{border:0px; padding:0px;}</style>");
            return true;
    }
}
// Ticker main run loop
function runTheTicker()
{
    var myTimeout; 
    // Go for the next story data block
    if(theCurrentLength == 0)
    {
        theCurrentStory++;
        theCurrentStory      = theCurrentStory % theItemCount;
        theStorySummary      = theSummaries[theCurrentStory].replace(/&quot;/g,'"');       
        theTargetLink        = theSiteLinks[theCurrentStory];
        theAnchorObject.href = theTargetLink;
        thePrefix        = "<span class=\"tickls\">" + theLeadString + "</span>";
    }
    // Stuff the current ticker text into the anchor
    theAnchorObject.innerHTML = thePrefix +
    theStorySummary.substring(0,theCurrentLength) + whatWidget();
    // Modify the length for the substring and define the timer
    if(theCurrentLength != theStorySummary.length)
    {
        theCurrentLength++;
        myTimeout = theCharacterTimeout;
    }
    else
    {
        theCurrentLength = 0;
        myTimeout = theStoryTimeout;
    }
    // Call up the next cycle of the ticker
    setTimeout("runTheTicker()", myTimeout);
}
// Widget generator
function whatWidget()
{
    if(theCurrentLength == theStorySummary.length)
    {
        return theWidgetNone;
    }
 
    if((theCurrentLength % 2) == 1)
    {
        return theWidgetOne;
    }
    else
    {
        return theWidgetTwo;
    }
}
// -->
 
<!--
var theCharacterTimeout = 25;
var theStoryTimeout     = 2000;
var theWidgetOne        = "_";
var theWidgetTwo        = "-";
var theWidgetNone       = "";
var theLeadString       = "";
var theSummaries = new Array();
var theSiteLinks = new Array();
theSummaries[	0	] = "	SERİGRAF BASKI	";
theSummaries[	1	] = "	ÇIKARTMA ETİKETLER (STICKER)	";
theSummaries[	2	] = "	POS MAKİNA ETİKETLERİ	";
theSummaries[	3	] = "	ALÜMİNYUM ETİKETLER	";
theSummaries[	4	] = "	ENDÜSTRİYEL ETİKETLER	";
theSummaries[	5	] = "	KUMANDA PANELLERİ	";
theSummaries[	6	] = "	SÜRGÜLÜ CETVELLER	";
theSummaries[	7	] = "	BRANDA, BANNER	";
theSummaries[	8	] = "	SIRALI VE KIRLANGIÇ BAYRAKLAR	";
theSummaries[	9	] = "	POP STAND BASKILARI	";
theSummaries[	10	] = "	FLOOR GRAFİK (YER GRAFİĞİ)	";
theSummaries[	11	] = "	LAK UYGULAMALARI	";
theSummaries[	12	] = "	REPREDÜKSİYON TABLOLAR	";
theSummaries[	13	] = "	IŞIKLI STAND BASKILARI	";
theSummaries[	14	] = "	PLASTİK RÖLYEFLER	";
theSummaries[	15	] = "	ANATOMİ KABARTMALARI	";
theSummaries[	16	] = "	DÖN KARTLAR	";
theSummaries[	17	] = "	RÖLYEF PANOLAR	";
theSummaries[	18	] = "	VAKUM STANDLAR	";
theSummaries[	19	] = "	VİTRİN MAĞAZA SÜSLEME	";
theSummaries[	20	] = "	TAKVİMLER	";
theSummaries[	21	] = "	PROMOSYON ÜRÜNLERİ	";
theSummaries[	22	] = "	ÇANTALAR	";
theSummaries[	23	] = "	MOUSE PAD	";
theSummaries[	24	] = "	İMZA PAD	";
theSummaries[	25	] = "	AMERİKAN SERVİS	";
theSummaries[	26	] = "	KİTAP AYRAÇLARI	";
theSummaries[	27	] = "	CETVELLER	";
theSummaries[	28	] = "	CEP TAKVİMLERİ	";
theSummaries[	29	] = "	DEFTER, AJANDA KAPAKLARI	";
theSummaries[	30	] = "	DÜZ MAGNETLER	";
theSummaries[	31	] = "	ÇERÇEVELİ MAGNETLER	";
theSummaries[	32	] = "	FREKANSLI ÜRÜNLER	";
theSummaries[	33	] = "	BOYUN ASKISI	";
theSummaries[	34	] = "	KALEMLİK, ÇÖP KOVASI	";
theSummaries[	35	] = "	DÜZ, KABARTMALI DÖNKARTLAR	";
theSummaries[	36	] = "	MASA SÜMENLERİ	";
theSummaries[	37	] = "	BOY ÖLÇER	";
theSummaries[	38	] = "	YAPIŞKANLI PANOLAR	";
theSummaries[	39	] = "	YELPAZELER	";
theSummaries[	40	] = "	FİYAT ETİKETLERİ, WOBLER	";
theSummaries[	41	] = "	A STAND	";
theSummaries[	42	] = "	RESİM ÇERÇEVESİ	";
theSummaries[	43	] = "	OFSET BASKI	";


var theItemCount = 43;
startTicker();
//-->

