$(document).ready( function () { $( '#nav' ).load( '/modules/nav.html' ); $( '#footer' ).load( '/modules/footer.html' ); $( '.button' ).mouseenter ( function () { $( this ).stop(); $( this ).animate( { 'border-radius': '0'} ); } ); $( '.button' ).mouseleave ( function () { $( this ).stop(); $( this ).animate( { 'border-radius': '50px'} ); } ); } );