/*
 * beta wizzard
 */

function wiz(){
	new Ajax.Request('http://www.kosmo.ch/ajax_wizzard.php',{
		method		: 'post',
		parameters	: $('wizzard').serialize(true),
		onSuccess	: function(transport){
			$('wizzard_container').update(transport.responseText);
		},
		onLoading	: function(){
				$('wizzard_container').update('<img src="http://www.spipe.com/theme/dionysos/images/icons/loader.gif" alt="loading" />').show(); // w��ks, static
		}
	});
}

/**
 * loader for games and software
 * @param did
 * @return
 */
	function csl(did){
		if(document.getElementById(did).style.display == 'none'){
			new Effect.SlideDown(did,{ duration: 1.0,queue: 'end' });
		}else{
			new Effect.SlideUp(did,{ duration: 1.0,queue: 'end' });
		}
	}