/*
Rotating image or text(You can use for changing banners)
Author: Narayan Chand Thakur
Source: http://ncthakur.itgo.com/
This may be used freely as long as this message is intact.
*/
<!--

//you may add your image file or text below
var item=new Array()
	item[0]="<font face='arial, helvetica, sans-serif' color='#FFFFFF'>BUY PHOTOS AT MY <a href='http://shellyhathaway.imagekind.com/'>ONLINE STORE</a></font>"
	item[1]="<font face='arial, helvetica, sans-serif' color='#FFFFFF'>READ MY LATEST <a href='http://mag.diddlyi.com/2010/03/irish-dancing-for-st-patricks-day-2/'>DIDDLYI</a> ARTICLE</font>"
	item[2]="<font face='arial, helvetica, sans-serif' color='#FFFFFF'>GET A FREE <a href='http://shellyhathaway.com/graphicdesign/webdesign.htm'>WEBSITE MAKEOVER</a></font>"
	item[3]="<font face='arial, helvetica, sans-serif' color='#FFFFFF'>3 PHOTOS A DAY FOR <a href='http://www.shellyhathaway.com/photography/'>2010</a></font>"
	item[4]="<font face='arial, helvetica, sans-serif' color='#FFFFFF'>VIEW GRAPHIC DESIGN <a href='http://www.shellyhathaway.com/graphicdesign/'>PORTFOLIO</a></font>"
	item[5]="<font face='arial, helvetica, sans-serif' color='#FFFFFF'>WATCH <a href='http://www.shellyhathaway.com/film/'>HATHAWAY CRAZY SHOWS</a></font>"
var current=0

var ns5=document.getElementById&&!document.all
function changeItem(){
if(document.layers){
document.layer1.document.write(item[current])
document.layer1.document.close()
}
if(ns5)document.getElementById("div1").innerHTML=item[current]
{
if(document.all){
div1.innerHTML=item[current]
}
}
if (current==5) current=0
else current++
setTimeout("changeItem()",6000)
}
window.onload=changeItem
//-->