// JavaScript Document
$(document).ready(function() {

MouseOverAnimate();

});

function MouseOverAnimate() {
	
	$('#haupt').mouseover(function() {$('#abdeckung').stop().animate({top: '600px'}, 'slow');}	);
	$('#Variationen').mouseover(function() {$('#abdeckung').stop().animate({top: '600px'}, 'slow');}	);
}



$(document).ready(function() {

MouseOutAnimate();

});

function MouseOutAnimate() {
	
	$('#haupt').mouseout(function() {$('#abdeckung').stop().animate({top: '200px'}, 'slow');}	);
	$('#Variationen').mouseout(function() {$('#abdeckung').stop().animate({top: '200px'}, 'slow');}	);
}

