/**
 * @author marcg
 */

$(document).ready(function(){
 $("#video a").toggle(function(){
    var swfSnip = '<object type="application/x-shockwave-flash" data="lib/swf/FlowPlayerNew.swf" width="320" height="263" />';
    swfSnip += '<param name="movie" value="lib/swf/FlowPlayerNew.swf" />';
    swfSnip += '<param name="quality" value="high" />';
    swfSnip += '<param name="scale" value="noScale" />';
    swfSnip += '<param name="wmode" value="transparent" />';
    swfSnip += '<param name="flashvars" value="config={showPlayList: false, showPlayList: false, bufferLength: 20, autoPlay:true, loop: false, showPlayListButtons: false, showMenu: false, videoFile:\'http://www.seguessl.com/videos/'+$("#flashContent").attr("rel")+'.flv\' }" />';
    swfSnip += '</object>';
    $("#flashContent").html(swfSnip).slideDown("slow");
    $(this).html("Cerrar video")
   },function(){
    $(this).html("Ver video")
    $("#flashContent").slideUp("slow",function(){$("#flashContent").html("")})
   })
})
