// setup player

$(document).ready( function() {

  $f("player", "/flowplayer/flowplayer-3.2.2.swf", {
    "clip": {
      //"provider": "pseudostreaming",
      //"url":"http://vod01.netdna.com/vod/demo.flowplayer/Extremists.flv"
    },
    "screen": {
      "height":"100pct",
      "top":0
    },
    "plugins": {
      "controls": {
        "timeColor":"#ffffff",
        "borderRadius":0,
        "slowForward":true,
        "bufferGradient":"none",
        "backgroundColor":"rgba(0, 0, 0, 0)",
        "volumeSliderGradient":"none",
        "slowBackward":false,
        "timeBorderRadius":20,
        "time":true,
        "progressGradient":"none",
        "height":26,
        "volumeColor":"#4599ff",
        "tooltips": {
          "marginBottom":5,
          "volume":true,
          "scrubber":true,
          "buttons":false
        },
        "fastBackward":false,
        "opacity":1,
        "timeFontSize":12,
        "volumeSliderColor":"#ffffff",
        "border":"0px",
        "bufferColor":"#a3a3a3",
        "buttonColor":"#ffffff",
        "mute":true,
        "autoHide": {
          "enabled":true,
          "hideDelay":500,
          "mouseOutDelay":500,
          "hideStyle":"fade",
          "hideDuration":400,
          "fullscreenOnly":false
        },
        "backgroundGradient":"none",
        "width":"100pct",
        "sliderBorder":"1px solid rgba(128, 128, 128, 0.7)",
        "display":"block",
        "buttonOverColor":"#ffffff",
        "fullscreen":true,
        "timeBgColor":"rgb(0, 0, 0, 0)",
        "borderWidth":1,
        "scrubberBarHeightRatio":0.4,
        "bottom":0,
        "stop":false,
        "sliderColor":"#000000",
        "zIndex":1,
        "borderColor":"rgba(153, 153, 153, 0.1)",
        "scrubberHeightRatio":0.6,
        "tooltipTextColor":"#ffffff",
        "sliderGradient":"none",
        "timeBgHeightRatio":0.8,
        "volumeSliderHeightRatio":0.6,
        "timeSeparator":" ",
        "name":"controls",
        "volumeBarHeightRatio":0.4,
        "left":"50pct",
        "tooltipColor":"rgba(0, 0, 0, 0)",
        "playlist":false,
        "durationColor":"#b8d9ff",
        "play":true,
        "fastForward":true,
        "timeBorder":"0px solid rgba(0, 0, 0, 0.3)",
        "progressColor":"#4599ff",
        "scrubber":true,
        "volume":true,
        "builtIn":false,
        "volumeBorder":"1px solid rgba(128, 128, 128, 0.7)"
      },
      viral: {
        // load the viral videos plugin
        url: 'flowplayer.viralvideos-3.2.1.swf',
        // define a video title used in sharing
        share: {
          description: 'Schuylkill County Idol VIII - Presented by the Schuylkill Mall' 
        }
      }

      /*"rtmp": {
        "netConnectionUrl":"rtmp://vod01.netdna.com/play",
        "url":"http://builds.flowplayer.netdna-cdn.com/flowplayer.rtmp-3.2.1.swf"
      }*/
    }
  // setup playlist plugin for the root entry of our playlist 
  }).playlist("#playlist", { loop:true } );

});

