<!--
//Cross Fading News Ticker - Copyright (
//     c) 2002, Nick Radford
//Use this script as you want... though 
//     give me credit for it!
NewsDelay=12000		//Time each story is displayed for
NewsFadeDelay=1000	//Time taken to fade from one story to the next
NewsFont='arial narrow'	//Ticket font family
NewsFontSize='2.0em'	//Ticket font size
NewsTextColor=new Array("#ffffff","#eeeeee","#dddddd","#cccccc","#bbbbbb","#aaaaaa","#999999","#888888","#777777","#666666","#555555","#444444","#333333","#222222","#111111","#000000")
NewsStory=0		//Working Variable
LastNewsStory=0		//Working Variable
NewsColor=0		//Working Variable
NewsArray=new Array(
	'Ken is now featured on the website for the new clothing line <span id="newshighlight">Dyme Wear</span>.  Click here to see him and get a peak at an exciting new brand of clothing.' , 'http://www.dymewear.com',
	'Stay tuned for the next issue of <span id="newshighlight">Dallas Hair and Fashion</span> magazine coming out the summer of 2008.  Ken will grace the cover of the magazine&#39;s premiere men&#39;s issue.' , 'http://dallashairandfashion.info/',
	'Did you know that you can contact Ken on <span id="newshighlight">myspace</span>?  Click here to see his official myspace page...' , 'http://www.myspace.com/koej',
	'Be sure to stop by the gift shop and pick up a poster... there are great deals on more goodies inside as well.' , 'http://kenechols.com/giftshop.html',
	'Kenechols.com can offer you various solutions to your web, graphics and media needs.  Go to the web design tab for further details.' , 'http://kenechols.com/DaKidDesigns.html',
	'Stay well informed with all the new changes and updates to kenechols.com... come back and visit periodically.' , 'http://www.kenechols.com/home.html')


    function DisplayNews(){
    	LastNewsStory=NewsStory
    	NewsStory++; if( NewsStory>(Math.floor(NewsArray.length/2)) ){NewsStory=1}
    	FadeNews()
}


    function FadeNews(){
    	if (NewsColor<(NewsTextColor.length)/2){var NewsLayer=1}
    	else {var NewsLayer=2}
    	//Old Story


        	if (LastNewsStory>0){
        		var NewsText = '<A href="'+ NewsArray[(LastNewsStory-1)*2+1] +'"><FONT color="'+ NewsTextColor[NewsColor] +'" face="'+ NewsFont +'" size="'+ NewsFontSize +'">'+ NewsArray[(LastNewsStory-1)*2] +'</FONT></A>'
        			if(document.layers){ document.eval('newslayer'+(3-NewsLayer)).document.write(NewsText); document.eval('newslayer'+(3-NewsLayer)).document.close() }//NN4
        			if(document.all){ eval('newslayer'+(3-NewsLayer)).innerHTML=NewsText }//IE
        			if(!document.all && document.getElementById){ document.getElementById('newslayer'+(3-NewsLayer)).innerHTML=NewsText }//NN6
        	}
        	//New Story
        		var NewsText = '<A href="'+ NewsArray[(NewsStory-1)*2+1] +'"><FONT color="'+ NewsTextColor[(NewsTextColor.length)-NewsColor-1] +'" face="'+ NewsFont +'" size="'+ NewsFontSize +'">'+ NewsArray[(NewsStory-1)*2] +'</FONT></A>'
        			if(document.layers){ document.eval('newslayer'+NewsLayer).document.write(NewsText); document.eval('newslayer'+NewsLayer).document.close() }//NN4
        			if(document.all){ eval('newslayer'+NewsLayer).innerHTML=NewsText }//IE
        			if(!document.all && document.getElementById){ document.getElementById('newslayer'+NewsLayer).innerHTML=NewsText; }//NN6
        	NewsColor++
        	if (NewsColor>=NewsTextColor.length){ NewsColor=0; setTimeout('DisplayNews()',NewsDelay) }
        	else { setTimeout('FadeNews()',NewsFadeDelay/NewsTextColor.length) }
    }

    //-->