function example( item )
{
	if ( !$( item ).hasClass( 'clicked' ) )
	{
		$( item ).val( '' );
		$( item ).addClass('clicked');
		$( item ).css( 'color', '#000' );
	}

	
	
/*	if ( $( item ).css( 'color' ) != 'rgb(0, 0, 0)' )
	{
		$( item ).css( 'color', '#000' );
		$( item ).val( '' );
	}*/
}

function init_element( id )
{
	element     = document.getElementById( id );
	element.style.display = 'none';
}


function toggle( id )
{
	element     = document.getElementById( id );
	
/*	if( element.style.display == 'none' ) {
		element.style.display = 'block';
	} else {
		element.style.display = 'none';
	}*/
}

function toggle_out( id )
{
	element     = document.getElementById( id );
	
	element.style.display = 'none';
}

function toggle_on( id )
{
	element     = document.getElementById( id );
	
	element.style.display = 'block';
}



function P91Fadein(id,geschwindigkeit){var fps=Math.round(geschwindigkeit/100);var tmp=0;for(i=0;i<=100;i++){setTimeout("P91Fadein_fade('"+id+"',"+i+")",(tmp*fps));tmp++;}}
function P91Fadein_fade(id,pas){var heurix=document.getElementById(id).style;if(heurix.display=="none"){heurix.display="block";}
heurix.opacity=(pas/100);heurix.MozOpacity=(pas/100);heurix.KhtmlOpacity=(pas/100);heurix.filter="alpha(opacity="+pas+")";}
