$(function() { $('div.bloggwrapper div.content:not(:first) div.brodtext').hide(); $('div.bloggwrapper div.content:not(:first) div.title').hide(); $('div.bloggwrapper div.content:not(:first) div.datum').hide(); $('div.bloggwrapper div.content:not(:first) div.secondTitle').show(); $('div.bloggwrapper div.secondTitle').bind('click', function() { $(this).hide(); $('div.bloggwrapper div.content div.brodtext:visible').siblings().filter('div.secondTitle').show(); /*$('div.bloggwrapper div.content div.brodtext:visible').hide(); $('div.bloggwrapper div.content div.title:visible').hide(); $('div.bloggwrapper div.content div.datum:visible').hide();**/ $(this).parent().find('div.brodtext, div.title, div.datum').show(); }).css('cursor', 'pointer'); $('#riderOverlay').bind('click', function() { var dataBlock = ''; $.ajax({ 'url': $(this).attr('rel'), 'dataType': 'html', 'type': 'GET', 'success': function(dHtml) { dataBlock = dHtml; }, 'complete': function() { $.modal(dataBlock, { onOpen: function (dialog) { dialog.overlay.show(); dialog.container.show(); dialog.data.show(); }, onClose: function() { $.modal.close(); } }); } }); }); });