jQuery(document).ready(function(){ jQuery( ".themeOptionsBlockHeadline" ).unbind( "click mouseover mouseout" ).bind("click mouseover mouseout", function(event){ event.preventDefault(); var thisObj = jQuery(this); if( event.type == 'click' ){ thisObj.next( ".themeOptionsBlockOuther" ).slideToggle('fast', function(){ jQuery( ".themeOptionsBlockHeadline" ).removeClass( "open" ).next( ".themeOptionsBlockOuther:visible" ).not( this ).slideToggle( 'fast' ); thisObj.toggleClass( "open" ); }); } else if( event.type == 'mouseover' ){ thisObj.addClass( "hoverEvent" ); } else if( event.type == 'mouseout' ){ thisObj.removeClass( "hoverEvent" ); } }); });