$(document).ready(function(){

$(".subnav").each(function () {
	var subMenuShowTime = 1100;
	var subMenuHideTime = 300;
	

	$(this).parent().hover(function () {
		$(this).children(".subnav")
			.stop(true,true)
			.slideDown(subMenuShowTime);
		//console.log($(".subnav:eq(0)", this));
		$(this).children("a").css("background-image", "url(bilder/navi_rund_oben.png)");
		$(this).children("a").css("color", "white");

	}, function () {
		$(this).children(".subnav")
			.stop(true,true)					
			.slideUp(subMenuHideTime)
			;
		$(this).children("a").css("background-image", "none"); 
		$(this).children("a").css("color", "#66401f");				

	});
});	


$(".subnav a").hover(function () {
	$(this).stop(true).animate({"padding-left": "19px"}, {speed: 100, easing: "easeOutBack"});
}, function () {
	$(this).stop(true).animate({"padding-left": "10px"}, {speed: 100, easing: "easeOutBounce"});
});



});

