// JavaScript Document
$(document).ready(function() {
	$('.versteck').hide();
	$('.open').hover(function() {
			$(this).find(".versteck").slideToggle("fast");
	});
});