$(function(){ $('.video:first').css({width: '425px', height: '344px'}); $('.doAccordian:first').hide(); $('.playVideo:first').show(); $('.doAccordian').click(function() { $('.playVideo:visible').fadeOut('fast',function() { $(this).parent().animate({height: '150px', width: '200px'}, 'slow', function() { $(this).children().filter('.doAccordian').fadeIn('fast'); }); }); $(this).fadeOut('fast',function() { $(this).parent().animate({ height: '344px', width: '425px' }, 'slow', function() { $(this).children().filter('.playVideo').fadeIn('fast'); }); });});});