$(function(){
	
	doMovie("7042");
	
	$('#videoLinks a').each(function() {
		
		$(this).bind('click', function() {
			doMovie( $(this).attr('title') );
			//console.log("doing movie with: " + $(this).attr('title'));
			return false;						   
		});							 
	});
	
	function doMovie(aLink)
	{
		var theMovie = "http://api.pstv.videojuicer.com/presentations/" + aLink + ".smil?seed_name=pokerstars";
		var so = null;
		
		var so = new SWFObject("http://player.videojuicer.com/bootstrap.swf", "", "440", "247", "0", "#000000"); 
		so.addParam("quality", ""); 
		so.addParam("wmode", "opaque"); 
		so.addParam("scale", "noscale"); 
		so.addParam("salign", "tl"); 
		so.addParam("allowFullScreen", "true"); 
		so.addParam("allowScriptAccess", "always"); 
		so.addVariable('AUTOLOAD', 'true'); 
		so.addVariable('AUTOPLAY', 'true'); 
		so.addVariable('LINKTARGET', '_blank');
		so.addVariable('SMILURI', theMovie); 
		so.addVariable('addFullScreenControl', 'YES'); 
		so.addVariable('ENABLEMENU', 'YES');
		so.addVariable('ENABLERELATED', 'TRUE');
		so.write("video"); 
	}
	
	
	
	
	
	
});
