// 2D array, most recent -> last 
// updates[0] = [date, description]
var updates=[   	['28.08.2004', '<a href="tarot.html">The Magician</a> appears...'],
				['27.05.2004', 'How many fanarts can I draw with either of them in various states of undress? <a href="fanart_nis.html">Too many, apparently.</a>'],
				['09.04.2004', '2 Sora fanart pieces (and not by me!) posted in the fanart section. You\'ve probably already seen them at <a href="http://www.lizzard.net/Escaflowne/">Tsubasa no Kami</a>.'],
				['03.04.2004', 'A double whammy: <a href="fics/myfic/hatred_sorrow3.htm">Third</a> chapter of my fic (yay, for WaFF?) and a piece of <a href="fanart_nis.html">fanart</a> to go with it.'],
				['29.03.2004', 'Added a link to artist <a href="http://homepage2.nifty.com/LEGULUS/">Ritsuko Aoki\'s page: Perfect World</a>. Plenty of delicious Hitomi/Van movie and series fanart (but sadly no F&S).'],
				['26.03.2004', 'Mmm... Sora/Folken Warm-and-Fuzzy-Feeling-ness! The <a href="fics/gfic/ccir2.htm">second chapter</a> of G\'s latest fic is up.'],
				['22.02.2004', 'The <a href="fics/gfic/ccir1.htm">first chapter</a> of G\'s latest fic has been reposted with the most recent version. Or you can visit her <a href="http://www.fanfiction.net/~euphorbic" target="_blank">www.fanfiction.net/~euphorbic account.</a>'],
				['19.02.2004', 'Added a page on my two favourite fascinations, Folken and David Bowie. What do they have in common? Possible inspiration for Folken\'s <a href="design.html">visual design</a>?'],	
				['15.02.2004', '<a href="fics/myfic/hatred_sorrow2.htm">Second chapter of my fic posted</a>.'],	
				['29.01.2004', 'The latest in the continuing saga of <i>trying</i> for Folken/Sora WaFF: <a href="fics/gfic/ccir1.htm">G\'s latest fic</a>. Oh, and I guess it would then make sense for me to post <a href="fics/myfic/hatred_sorrow1.htm">my second fic</a>... heh.'],	
				['24.01.2004', 'Sorry for the lag in updates. <br> Essay on their <a href="pairing.html">relationship</a> added, but not quite finished?'],
				['09.01.2004', 'Lyrics and translation of Sora\'s song added.'],	
				['06.01.2004', 'Now your Winamp can look like mine. <a href="download.html">Download</a> section added.'],	
				['30.12.2003', 'Link page added.'],	
				['30.12.2003', 'This site is now hosted by <a href="http://www.majestic-beast.net">www.majestic-beast.net</a> and its gracious owner!'],	
				['26.12.2003', 'Remade the splash page.<br/> <a href="fic.html">New fanfiction</a> posted! <i>A Chance for Redemption</i> by RaspberryGirl'],	
				['24.12.2003', 'Added a paragraph on Dune to <a href="bio_f.html">Folken\'s Profile</a>.<br/>Posted the "Sora is the Goddess of Wings" <a href="sora_goddess.html">write-up</a>.'],
				['18.12.2003', 'Grand Opening! Several pages still under construction. It took waaaay to long too get this running...<br/> Googles of thanks to G for letting me host her fanfics. =D']];

function printUpdates(){				
for(var i=0; i<updates.length; i++){document.write('<p>' + updates[i][0] + '<br/>'+ updates[i][1] + '</p>');}
}


// dynamic greeting

var news=["Welcome to Wing of Dragon, Song of Goddess<p> A Folken and Sora fansite...", 
		"Do you have Folken and/or Sora material you would like hosted?<br> Send them to: <a href='mailto:purple_shad@hotmail.com'>purple_shad@hotmail.com</a>",
			"<b>Latest Update:</b> "+updates[0][0]+"<br>"+updates[0][1] ]
	
var i=0
function altercontent(){
//if IE 4+
if (document.all)
dcontent.innerHTML=news[i];
//else if NS 6 (supports new DOM)
else if (document.getElementById){
rng = document.createRange();
el = document.getElementById("dcontent");
rng.setStartBefore(el);
htmlFrag = rng.createContextualFragment(news[i]);
while (el.hasChildNodes())
el.removeChild(el.lastChild);
el.appendChild(htmlFrag);
}

if (i==news.length-1)
i=0
else
i++
}

function beginrotation(){
if (document.all||document.layers||document.getElementById)
setInterval("altercontent()",5000)
}
window.onload=beginrotation
