以下を機能させることができず、ページが完全に壊れます...コールバック関数を取り出すと機能します...何が間違っているのかわかりません...
$(document).ready(function() {
var easing = 'easeOutBounce';
$('#cont').click(function() {
$('#cont').animate({width: '400px'}, {duration:1000, easing: easing, complete:function(){ $(this).html("Animation Completed");});
$('#conttwo').animate({width: '100px'}, {duration:1000, easing: easing});
$('#contthree').animate({width: '100px'}, {duration:1000, easing: easing});
});