$(document).ready(function(){
   			
   			$(".rollover").hide();
            
     		$(".bereiche").hover(function(event){
       			$(this).next(".rollover").toggle("slow");
       			event.preventDefault();
     		});
});
