// Hover bei Bildern

$(document).ready(function(){
$("img.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
 
});





// Pulldown Animation

$(document).ready(
	function(){
		$('.pulldown01').hover(
 				function(){
						$(this).children('ul').css('display', 'block');
						$(this).children('ul').stop(true, true).animate({top: '103px', height: '60px'}, 200)
				},
				function(){
					$(this).children('ul').stop(true, true).animate({top: '135px', height: '60px'}, 100, function(){$(this).css('display', 'none')})
				}
		)
	}
);



$(document).ready(
	function(){
		$('.pulldown02').hover(
 				function(){
						$(this).children('ul').css('display', 'block');
						$(this).children('ul').stop(true, true).animate({top: '132px', height: '30px'}, 200)
				},
				function(){
					$(this).children('ul').stop(true, true).animate({top: '163px', height: '30px'}, 100, function(){$(this).css('display', 'none')})
				}
		)
	}
);



$(document).ready(
	function(){
		$('.pulldown03').hover(
 				function(){
						$(this).children('ul').css('display', 'block');
						$(this).children('ul').stop(true, true).animate({top: '-153px', height: '270px'}, 200)
				},
				function(){
					$(this).children('ul').stop(true, true).animate({top: '-120px', height: '271px'}, 100, function(){$(this).css('display', 'none')})
				}
		)
	}
);
