/**
 *  This function starts a toggleaction for a defined element
 *
 *  @param:   string     The ID of the element
 *  @param:   integer    The miliseconds, which has to been waited befor the action starts
 *  @param:   string     This is the togglespeed. Format must be like '1.0' 
 *
 */
function nawtoggle(togId, togTime, togSpeed) {
	speedParam = togSpeed;
	idParam = togId;
	setTimeout("nawtogglenow(idParam, speedParam)" ,togTime);
}




/**
 *  This is the 'sub-function' of nawtoggle. It starts the toggle directly.
 *  @param:   string     The ID of the element
 *  @param:   string     This is the togglespeed. Format must be like '1.0'
 *
 */

function nawtogglenow(id, speed) {
	idtag = id;
	Effect.SlideDown(idtag,{duration:speed});
}

