﻿function videoPlayerImageClicked(e)
{
    var flvPath = e.target.src.replace(".jpg", ".flv").replace(".gif", ".flv");
    var flashvars = {
        FLVpath: flvPath,
		playerskin: "http://" + location.host + "/flash/SkinUnderPlayStopSeekMuteVol.swf"
	};
	var params = { 
		quality: "best",
		bgcolor: "#ffffff",
		allowfullscreen: "true",
		loop: "false"
	}; 
	var attributes = {};
	swfobject.embedSWF("http://" + location.host + "/Flash/VideoPlayer.swf", "vcontent", "320", "250", "9.0.0", "flash/expressInstall.swf", flashvars, params, attributes);
	    
    $('#videoPlayer').show();
    $('#videoPlayer').center();
}

function closeVideoPlayer_Clicked(e)
{
    e.preventDefault();
    $('#videoPlayer').hide();
    
    var flashvars = {
        FLVpath: "",
		playerskin: "http://" + location.host + "/flash/SkinUnderPlayStopSeekMuteVol.swf"
	};
	var params = { };
	var attributes = {};
    swfobject.embedSWF("http://" + location.host + "/Flash/VideoPlayer.swf", "vcontent", "320", "250", "9.0.0", "flash/expressInstall.swf", flashvars, params, attributes);
}

$(document).ready(function() {
    $('.videoPlayer').bind("click", videoPlayerImageClicked);
    $('#VideoCloseButton').bind("click", closeVideoPlayer_Clicked);
});