
	$(function() {
	
	    $('.boxGruen').corner('#fff 10px');
		$('.boxBeige').corner('#fff 10px');
		
		$('.dokuLink').click(function() {
			var content = $(this).parent().parent().children('.dokuContent').html();	
			$('#dokusenden').append( content );
			$('#dokusenden .dokuContent').show();
			$('form', '#dokusenden').submit(function() {
			
				$('input[name=fromAddress]', this).val($('input[name=Email_required]', this).val());
			});
		});
		
		$('.dokuLink').overlay({
			target: '#dokusenden',
			
			onLoad: function() {
			
				$('.closer', this.getOverlay()).click(function() {
				
					$('.close').click();
				});
			},
			
			onClose: function() {
			
				
				$('#dokusenden .dokuContainer').remove() ;
			}
		});
		
		
		
		$('.bestellenLink').overlay({
			target: '#bestellen',
		
			onLoad: function() {
			
				$('.closer', this.getOverlay()).click(function() {
				
					$('.close').click();
				});
			}
		});
		
		
		$('.bestellenLinkKey').overlay({
			target: '#bestellenKey',
		
			onLoad: function() {
			
				$('.closer', this.getOverlay()).click(function() {
				
					$('.close').click();
				});
			}
		});
		
		
		$('.gutscheineLink').overlay({
			target: '#gutscheine',
		
			onLoad: function() {
			
				$('.closer', this.getOverlay()).click(function() {
				
					$('.close').click();
				});
			}
		});
		
		$('.kontaktLink').overlay({
			target: '#kontakt',
		
			onLoad: function() {
			
				$('.closer', this.getOverlay()).click(function() {
				
					$('.close').click();
				});						
			}
		});
		
		$('.infoLink').click(function() {
			$(this).parent().parent().children('.moreInfo').slideToggle('slow');
			return false;
		});
		
		
		$('.onlineunfrageLink').overlay({
			target: '#onlineunfrage',
		
			onLoad: function() {
			
				$('.closer', this.getOverlay()).click(function() {
				
					$('.close').click();
				});						
			}
		});
		
		
	});
	
	
		
