/*====================================================================
  Kyoto Shisaku Net
====================================================================*/

// Slideshow
new TabKit( 'h2>img' , {
	next: 'h2>img'
}, {
	autoPlay: true,
	autoStop: false,
	delay: 5,
	scaling: 0,
	styling: 0
	/* ,
	effect: function(next, current, container){
		if(next.slideEffect && next.slideEffect.cancel) next.slideEffect.cancel();
		next.show().setOpacity(0);
		container.insert(next);
		next.slideEffect = new Effect.Tween(null, 0, 1, {
			duration: .3,
			transition: function(position){return --position*position*position+1}
		}, function(position){
			next.setStyle({
				opacity: position,
				left: -960*(1-position) +'px',
				top: -300*(1-position) +'px',
				width:  960*(3-position*2) +'px',
				height: 300*(3-position*2) +'px'
			});
			if(position == 1) current.hide();
		});
	} */
});

// Randomize
Event.observe(window, 'load', function(){
	var nodes = $$('div#Body>ul.contents>li');
	if(!nodes || !nodes[0]) return;
	var container = $(nodes[0].parentNode);

	nodes.sortBy( function(){
		return Math.random();
	}).each( function(e){
		container.insert(e);
	});
});
