jQuery(document).ready(function(){ var button_rechts_1=jQuery('.css_center_outer1').css('right'); var button_links_1=jQuery('.css_center_outer1').css('left'); var button_zindex_1=jQuery('.css_center_outer1').css('z-index'); jQuery('.button_rechts.css_center_outer1').find('.button_form').hover( function(){ jQuery(this).parents('.css_center_outer').css('z-index',9999999); jQuery(this).parents('.css_center_outer1').stop(true,false).animate({ right: -3 },function (){}); }, function(){ jQuery(this).parents('.css_center_outer1').stop(true,false).animate({ right: button_rechts_1 },function (){ jQuery(this).css('z-index',button_zindex_1);}); }); jQuery('.button_links.css_center_outer1').find('.button_form').hover( function(){ jQuery(this).parents('.css_center_outer').css('z-index',9999999); jQuery(this).parents('.css_center_outer1').stop(true,false).animate({ left: -3 },function (){}); }, function(){ jQuery(this).parents('.css_center_outer1').stop(true,false).animate({ left: button_links_1 },function (){ jQuery(this).css('z-index',button_zindex_1);}); }); var button_rechts_5=jQuery('.css_center_outer5').css('right'); var button_links_5=jQuery('.css_center_outer5').css('left'); var button_zindex_5=jQuery('.css_center_outer5').css('z-index'); jQuery('.button_rechts.css_center_outer5').find('.button_form').hover( function(){ jQuery(this).parents('.css_center_outer').css('z-index',9999999); jQuery(this).parents('.css_center_outer5').stop(true,false).animate({ right: -3 },function (){}); }, function(){ jQuery(this).parents('.css_center_outer5').stop(true,false).animate({ right: button_rechts_5 },function (){ jQuery(this).css('z-index',button_zindex_5);}); }); jQuery('.button_links.css_center_outer5').find('.button_form').hover( function(){ jQuery(this).parents('.css_center_outer').css('z-index',9999999); jQuery(this).parents('.css_center_outer5').stop(true,false).animate({ left: -3 },function (){}); }, function(){ jQuery(this).parents('.css_center_outer5').stop(true,false).animate({ left: button_links_5 },function (){ jQuery(this).css('z-index',button_zindex_5);}); }); });