﻿      
$(document).ready(function() {

    $(".player").each(function() {
        var autoPlay = ($(this).attr('data-auto-play') == undefined) ? true : ("true" === ($(this).attr('data-auto-play')));
        $(this).flowplayer("/skin/media/flowplayer-3.2.7.swf", { clip: { autoPlay: autoPlay, autoBuffering: true} });
    });
});
