﻿videoPath = 'http://media.productionhub.com.s3.amazonaws.com/';
var player = null;

switchDiv = function(n)
{
	$('#infocontainer div.sidetabcontainer').hide();
	$('#tab' + n).show();
	$('#sidetabmenu li').removeClass('active');
	var current = $('#sidetabmenu li')[n];
	$(current).addClass('active');
}

playerReady = function(obj)
{
	player = document.getElementById(obj.id);
	var videos = ['joelholland','markschulze','richcampbell01'];
	var randomnumber = Math.floor(Math.random() * videos.length);
	var selected = { file: videoPath + videos[randomnumber] + '.flv', image: '/videos/previews/' + videos[randomnumber] + '.png' };
	player.sendEvent("LOAD", selected);
}

$(function()
{
	$('#sidetabmenu li a').each(function(n) { $(this).bind('click', n, function(e) { e.preventDefault(); switchDiv(n); }); });
	$('.prev').each(function(n) { $(this).bind('click', n, function() { switchDiv(n); return false; }); });
	$('.next').each(function(n) { $(this).bind('click', n, function() { switchDiv(n + 1); return false; }); });
	switchDiv(0);
}
);