$(document).ready(function() {
    $("a.youtube").click(function(e) {
       e.preventDefault();
       window.location.hash = "youtube" + $(this).attr('data-key');
        
       var video_url = $(this).attr("href").replace("http://www.youtube.com/watch?v=", "");
       var embed = "<div class=\"vimeo\"><object style=\"height: 410px; width: 700px\"><param name=\"movie\" value=\"http://www.youtube.com/v/" + video_url + "?version=3\"><param name=\"allowFullScreen\" value=\"true\"><param name=\"allowScriptAccess\" value=\"always\"><embed src=\"http://www.youtube.com/v/" + video_url + "?version=3\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\" allowScriptAccess=\"always\" width=\"640\" height=\"390\"></object><a id=\"close\" href=\"#\"><img src=\"images/fancyzoom/closebox.png\" /></a></div>";

       $(embed).dialog({
            closeOnEscape: true,
            dialogClass: 'shipchooser',
            draggable: false,
            resizable: true,
            width: 700,
            height: 410,
            modal: true,
            open: function() {
                //$("iframe#vimeo").width(700);
            },
            close: function(e) {
                e.preventDefault();
                //$("iframe#vimeo").remove();
            }
        });
    });

    $("a#close").live("click", function(e) {
        e.preventDefault();
        $("div.vimeo").dialog("close");
        //$("iframe#vimeo").remove();
    });
});
