(function($){
    $(document).ready(function() {
        $.each($('.youtube'), function(index) {
            $(this).click(function() {
                $('#video #clip').html('<object width="323" height="270"><param name="movie" value="' + $(this).attr('href') + '"></param><param name="wmode" value="transparent"></param><embed src="' + $(this).attr('href') + '" type="application/x-shockwave-flash" wmode="transparent" width="323" height="270" id="flashays"></embed></object>');
                return false;
            });
        });
    });
})(jQuery);