$(document).ready(function(){
	
	$(".ang_text").css({display: "none"});
	$(".ang_mehr").css({display: "block"});
	
	
	$(".ang_mehr").mouseover(function(){
			$(this).css({
					cursor: "pointer",
					background: "#4B4D3F"
				});
		});
	$(".ang_mehr").mouseout(function(){
			$(this).css({
					cursor: "normal",
					background: "url(../layout/menu_bg_midmenu.jpg)"
				});
		});
	$(".ang_mehr").click(function(){
			
			$(this).next(".ang_text").toggle();
			
		
		});	



	$(".shop_mehr_info_button").mouseover(function(){
			$(this).css({
					cursor: "pointer",
				});
		});
	$(".shop_mehr_info_button").mouseout(function(){
			$(this).css({
					cursor: "normal",
				});
		});
	$(".shop_mehr_info_button").click(function(){
			
			$(this).next(".shop_mehr_informationen").toggle();
			
		
		});	












});
