jQuery(document).ready(function(){ // initialise plugins jQuery(function(){ jQuery(".image-trans").fadeTransition(); jQuery('ul.sf-menu').superfish(); }); jQuery(".topnav ul").each( function() { var elem = jQuery(this); if (elem.children().length == 0) { elem.remove(); } } ); }); jQuery(function ($) { // Load dialog on page load //$('#basic-modal-content').modal(); // Load dialog on click $('.peopleLists li a').click(function (e) { var listid = $(this).attr('class'); listid = '#'+listid+'box'; $(listid).modal({ overlayClose: true }); return false; }); });