/** * footer-jquery.js * * Add some jQuery to the footer */ jQuery('#secondary .widget').append('
'); jQuery('.post').append('
'); jQuery('.depth-1').append('
'); jQuery('.menu-toggle').next().next().addClass('hide'); jQuery('.menu-toggle').click(function() { jQuery(this).parent().addClass('toggled'); jQuery(this).next().next().toggle('fast'); return false; });