	$(document).ready(function(){			
				
				$("#logo_wae").click(function(){ 	
					window.setTimeout('location.reload()', 1);
				});
				
				$("#logo_lav").click(function(){ 	
					window.location = 'http://www.lavanderia.at';
				});
				
				
				$(".menue h1").click(function(){
						
				  if ( $(this).next().is(':visible') ) {
					  
					  if  ($.browser.msie) {
						//$(this).next().attr("style", "display: none;");
					  };
					  
					  if (!($.browser.msie)) {
					  	//$(this).next().hide(500)
					  };
					  //$('#adress').show(500)
					  //alert ('IF')
					  //$(".submenue").hide(5000)
					  
				  }
					  
				  else
				  
				  {
					  
					  if  ($.browser.msie) {
						$(".submenue").attr("style", "display: none;")
						$(this).next().toggle(500).attr("style", "display: block;")
					  };
					  
					  if (!($.browser.msie)) {
					  	$(".submenue").hide(500)
						$(this).next().toggle(500)
					  };
					  //alert ('ELSE')
					  //$(".submenue").hide(500)
					  //$(this).next().show(500)
					  //$('#adress').hide(500)
					  };
			
				  /*if ( $(this).is('h1.jpg') ) {
					  
					  //alert ('opa!')
					  $('div#mcs_container').animate({
						top: "125",
						height: "215",
				  		}, 1 );	
					  $('div.customScrollBox').animate({
						height: "215",
				  		}, 1 );	
				
				  }; */ 
					
				});
	});			
	
			
