function menue(id)
{
	$('div.info').show();
	$('div.imprint').hide();
	$('.menuitems').hide();
	$('.menuhead div').removeClass('selected');
	$('#' + id + '_items').show();	
	$('#' + id + ' div').addClass('selected');
	$.scrollTo('#' + id + '_box', 1,  {offset:-152});
}
function imprintswitch()
{
	$('div.info').hide();	
	$('div.imprint').show();
	$('.menuhead div').removeClass('selected');
	$('div.menuitems').hide();
	$.scrollTo('#imprint', 1,  {offset:-152});
}
function jump(id)
{
	$.scrollTo('#' + id, 1,  {offset:-152});
}
function showdetails(id)
{
	$('div#detail' + id).hide();
	$('div#detailcont' + id).show();
}
function hidedetails(id)
{
	$('div#detail' + id).show();
	$('div#detailcont' + id).hide();
}
