$(function()
{
	// Check for embedded movies
	
	var i = 0;
	
	$(".flashEmbed").each(function()
	{
		var url = $(this).attr("rel");
		var width = $(this).attr("width");
		var height = $(this).attr("height");

		$(this).replaceWith('<div id="player'+i+'" class="flash_embed"></div>');
		loadflash('player'+i, url, width, height);

		i++;
	});	

	$(".movieEmbed").each(function()
	{
		var url = $(this).attr("rel");
		var width = $(this).attr("width");
		var height = $(this).attr("height");

		$(this).replaceWith('<div id="player'+i+'" class="movie_embed"></div>');
		loadmovie('player'+i, url, width, height);

		i++;
	});	

});

function loadflash(id, url, width, height)
{
	var s1 = new SWFObject(url,'player',width,height,'9');
	s1.addParam('allowfullscreen','true');
	s1.write(id);
}

function loadmovie(id, url, width, height)
{
	var s1 = new SWFObject('/js/player.swf','player',width,height,'9');
	s1.addParam('allowfullscreen','true');
	s1.addParam('allowscriptaccess','always');
	s1.addVariable('file', url);
	if(!url.match('http://'))
		s1.addVariable('streamer','rtmp://wowza.cengage.com:443/emea-gale&bufferlength=10');
	s1.write(id);
}


