﻿/*
	Title: Video Player [Version 1]
	Author: Tim Keir
	Created: 17/02/2010
	
	Copyright © 2010 Internet Design Studios Pty Ltd, All Rights Reserved
	www.idstudios.com.au
*/


// ---------------------------------------------------
// Embed Flash Video Player
// ---------------------------------------------------
function embedVideoPlayer(id, flv, img, auto, hide) {
    // Width/Height
   var width = $('#'+id).width() != undefined ? $('#'+id).width() : $('#'+id).attr('width');
    var height = $('#'+id).height() != undefined ? $('#'+id).height() : $('#'+id).attr('height');
	// Toggle between dev server and live site
	var domain = (document.domain == "internal.idstudios.net") ? 'http://internal.idstudios.net/aotv.com.au/' : 'http://'+document.domain+"/";
    // Embed Flash
	var flashvars = {};
		flashvars.videoSource = flv;
		flashvars.imageSource = img;
		flashvars.autoStart = auto;
		if(hide == true) flashvars.showClose = true;
	var params = {};
		params.menu = "false";
		params.scale = "noscale";
		params.wmode = "transparent";
	var attributes = {};
		attributes.id = "videoPlayerFlash";
	swfobject.embedSWF(domain+"home/flash/videoplayer.swf?nc="+new Date().getTime(), id, width, height, "9.0.0", domain+"home/flash/expressInstall.swf", flashvars, params, attributes);
}

var cdn = "http://download.chook.tv/aotv/";

function swapVideo(video, still) {
	// Target flash
	var vp = document.getElementById('videoPlayerFlash');
	// Swap video
	vp.swapVideo(cdn+video, cdn+still);	
}