// JavaScript Document
$(function() {
	$('.eqxmenutitel').hover(function(){
		$(this).find('.equp').animate({top:'-115px'},{queue:false,duration:100});
		$(this).find('.eqdown').animate({bottom:'-205px'},{queue:false,duration:100});
	}, function(){
		$(this).find('.equp').animate({top:'0px'},{queue:false,duration:600});
		$(this).find('.eqdown').animate({bottom:'-90px'},{queue:false,duration:600});
	});
});
