Window.onDomReady(startUp);
//window.onload = startUp;
function startUp() {
	
	/* slideshow */
	var mySlideData = new Array();
	var countArticle = 0;
	$$('#winter_funfest_slideshow ul li').each(function(el) {
	    var tmpA = el.getElement('a');
	    var tmpIMG = el.getElement('img');
	    mySlideData[countArticle++] = new Array(
	        tmpIMG.src,
	        tmpA.href,
	        tmpA.title,
	        tmpIMG.alt	        
	    );
	});
	if (countArticle != 0) {
		var slideshow = new timedSlideShow($('winter_funfest_slideshow'), mySlideData, mySlideData[0][0]);
		$$('#winter_funfest_slideshow ul').each(function(el) {
			el.remove();
		});
	}
	
}