You can find the default usage here: http://gsgd.co.uk/sandbox/jquery/easing/
Here is an example of 'easeOutQuad':
function (){
jQuery.easing.def = 'easeOutQuad';
$('#options-examples').on('click','a', function() {
$('#another-option-examples').slideToggle(1000);
return false;
});
}