jQuery(document).ready(function(){ var button_rechts_10=jQuery('.css_center_outer10').css('right'); var button_links_10=jQuery('.css_center_outer10').css('left'); var button_zindex_10=jQuery('.css_center_outer10').css('z-index'); jQuery('.button_rechts.css_center_outer10').find('.button_form').hover( function(){ jQuery(this).parents('.css_center_outer').css('z-index',9999999); jQuery(this).parents('.css_center_outer10').stop(true,false).animate({ right: -3 },function (){}); }, function(){ jQuery(this).parents('.css_center_outer10').stop(true,false).animate({ right: button_rechts_10 },function (){ jQuery(this).css('z-index',button_zindex_10);}); }); jQuery('.button_links.css_center_outer10').find('.button_form').hover( function(){ jQuery(this).parents('.css_center_outer').css('z-index',9999999); jQuery(this).parents('.css_center_outer10').stop(true,false).animate({ left: -3 },function (){}); }, function(){ jQuery(this).parents('.css_center_outer10').stop(true,false).animate({ left: button_links_10 },function (){ jQuery(this).css('z-index',button_zindex_10);}); }); });