/**
 * DOM OHG
 * Bülowstr.137
 * 45711 Datteln
 *
 * Thomas Pawluc
 * tpa@dom-ohg.de
 */

$(document).ready(function () {    
    $('#menue li').hover(
        function () { 
            //$('div', this).stop(true, true).slideDown(350);
            $('div', this).stop(true, true).fadeIn(100);
        },
        function () {
            //$('div', this).stop(true, true).delay(200).slideUp(350);  
			$('div', this).stop(true, true).delay(100).fadeOut(100);       
        });
});
