$(document).ready(function(){
	if($('.organigramm_content').length != 0)
	{
		$('area').mouseout(function(){
			hide_info();
		});
	}
	
	$('img').load(function(){
//		console.log(images_on_page);
		$('.newsitem_single .bild .caption').width($('.newsitem_single .bild img').width());
	});
});

function show_info(box)
{
	$('#'+box).show();
}

function hide_info()
{
	$('.organigramm_content').hide();
}
