$j(document).ready(function(){

    $j('a[@href^="http://youtube.com"]')
    .hide()
    .flash(
        { height: 344, width: 425 },
        { version: 8 },
        function(htmlOptions) {
            $this = $j(this);
            htmlOptions.src = $this.attr('href');
            $this.before($j.fn.flash.transform(htmlOptions));						
        }
    );
    
    growContentMenu();
});
