$(function () {
    $("a[rel^='prettyPhoto']").prettyPhoto({

        custom_markup: "<div id='flowplayerContainer' style='width:480px; height:360px'></div>",
        changepicturecallback: function () { showFlowPlayer(); },
        animation_speed: 'slow',
        slideshow: false,
        autoplay_slideshow: false,
        allow_resize: false,
        theme: 'pp_default',
        overlay_gallery: false,
        social_tools: false,
        autoplay: false

    });
});

function showFlowPlayer() {
    $('#flowplayerContainer').css('width', '480px').css('height', '360px');
    flowplayer(
        'flowplayerContainer',
        '/jq/video/flowplayer-3.2.7.swf',
        '/jq/video/pennandteller.flv'
    );
}
