// Schallmauer Ich bin... Dropdown

$(document).ready(function () {
	
	var
	ichbin = $("#ichbin"),
	subnavi_ichbin = $("#subnavi_ichbin");
	
	subnavi_ichbin.hide();
	
	ichbin.hover(
        function () {
            $('ul', this).stop(true, true).show();
        },
        function () {
            $('ul', this).stop(true, true).hide();
        }
    );
	
	ichbin.hover(
		function () {
			ichbin.css('cursor', 'pointer');
        },
        function () {
			ichbin.css('cursor', 'auto');
        }
    );
	
});
