function openImprint() {
	MeinFenster = window.open('imprint.html', "Impressum", "width=400,height=550,left=20,top=30,scrollbars=yes");
	MeinFenster.focus();
}

function showItem(aObj) {
	var target = $($(aObj).attr('rel'));
	var delay = 0;
	
	$('ul.item_content').each(function() {
		if($(this).attr('id') != target.attr('id') && $(this).hasClass('active')) {
			$(this).toggleClass('active').animate({
				opacity : 'hide',
				left : '-=100'
			});
			delay = 100;
		}
	})
	
	if(target.hasClass('active')) {
		target.toggleClass('active').animate({
			opacity : 'hide',
			left : '-=100'
		});
	} else {
		target.delay(delay).toggleClass('active').animate({
			opacity : 'show',
			left : '+=100'
		});
	}
}


$(document).ready(function() {

});
