/*
$(document).ready( function()
{

	$("#ilayer_button").click( function()
	{
	
		if( $("#informationlayer_content").hasClass( 'opened' ) )
		{
			$("#informationlayer_content").removeClass( 'opened' );
			$("#informationlayer_content").addClass( 'closed' );
			
			$("#ilayer_button").html( '<img src="img/button_informationlayer_open.png" alt="Hinweisfenster &ouml;ffnen" title="Hinweisfenster &ouml;ffnen" width="35" height="52" />' );
		}
		else
		{
			$("#informationlayer_content").removeClass( 'closed' );
			$("#informationlayer_content").addClass( 'opened' );
			
			$("#ilayer_button").html( '<img src="img/button_informationlayer_close.png" alt="Hinweisfenster schlie&szlig;en" title="Hinweisfenster schlie&szlig;en" width="35" height="52" />' );
		}
		
	}	
	);

}
);
*/
