﻿$(document).ready(function () {
	
	$("#Nav>li>ul").css({ marginTop: "-1px" });
	
	var a = $("#Nav>li"); 
	
	a.bind("mouseover", function () {
			$(this).children("ul").stop().animate({
				height: $(this).children("ul").children("li").length * 40 + "px", opacity: 1 }, 300)
	});
	a.bind("mouseout", function () {
			$(this).children("ul").stop().animate({ height: 0, opacity: 0 }, 250)	
	});
	
	// Sidebar Rechts
	$(".socialcontact img").parent().hover(function(){
		
		$(this).next().children().css("text-decoration", "underline");
		
	},function(){
		
		$(this).next().children().removeAttr("style");
		
	});
	
});
