// // PREVIEW AUFBLÄTTERN // $(document).ready(function(){ $('#overview').click(function(){ $("#contentoverview_c").animate({ height: 'show', opacity: 'show' }, 'fast'); }) $('#uebersicht').click(function(){ $("#contentoverview_c").animate({ height: 'show', opacity: 'show' }, 'fast'); }) $('#contentoverview_close').click(function(){ $("#contentoverview_c").animate({ height: 'hide', opacity: 'hide' }, 'slow'); }) });