jQuery(document).ready(function() { // Superfish Menu jQuery( 'ul.sf-menu' ).superfish(); // Link Nudding jQuery( '.sidebar .widget li a' ).hover( function() { jQuery( this ).stop().animate( { paddingLeft : '10px' }, 200 ); }, function() { jQuery( this ).stop().animate( { paddingLeft : '0' }, 500 ); } ); // Last Childs jQuery( '#top-menu li:first-child, .widget:first-child, .widget li:first-child, .type-post:first-child, .search-results .type-page:first-child, #footer-menu li:first-child' ).addClass( 'first-child' ); jQuery( '#top-menu li:last-child, .type-post:last-child, .widget:last-child, .widget li:last-child, .sidebar .widget img:last-child, #footer-menu li:last-child' ).addClass( 'last-child' ); }); // Document Ready