$(document).ready(function ()
{
	var screenHeight = $(window).height();
	var bodyHeight = $('#main_frame').height();
	
	if(screenHeight > bodyHeight) {
		$('html, body').css({'height' : '100%'});
		$('body').css({'overflow' : 'hidden'});
	}
	
	$('.btn_shop a').attr('href', 'http://www.angermaier-onlineshop.de');
	$('.navi_bottom_right tr:first td:nth-child(3)').html('10-19 Uhr');
	$('.navi_bottom_right tr::nth-child(2) td:nth-child(2)').html('10-16 Uhr');
	$('.subwrapper-center4 ul li:nth-child(3)').hide();
	
	//$('#main_frame').append('<img src="/fileadmin/user_upload/xmas-stoerer.png" style="position:absolute;right:-170px;top:90px;z-index:9999;" alt="" />');
/*
	$(".sub_wrapper").hide();
	$(".menuparent >a ").click(function () {

 	if ($(".sub_wrapper").is(":hidden")) {
 		$(".sub_wrapper").slideDown("slow");
 	} else {
 		$(".sub_wrapper").slideUp("slow");
 	}
	return false;	
 	});
*/
});

var currentElem = null;
var oldElem = null;
function showMenu(item)
{
	var newElem = jQuery("."+item);
	newElem.slideToggle(500);

	if(currentElem)
	{
		if(oldElem != item) 
		{
			currentElem.slideToggle(500);		
		}
		else
		{
		 	newElem = null;
		}
		
	}
	currentElem = newElem;
	oldElem = item;
}

