$(document).ready(function(){ $('#video_box').hide(); $('a.video-link', this).click(function(){ $(this).next('#video_box').slideToggle(); return false; }); $('a.video-close', this).click(function(){ $(this).parent('#video_box').hide(); return false; }, function(){ $(this).siblings('#video_frame').empty(); }) });