$(function(){
	bam.loadSync("/shared/scripts/bam/bam.popModule.js");
	bam.popModule.init({
		css        : "/shared/css/bam/bam.popModule.css",
		overlayCss : "/shared/css/bam/bam.overlay.css"
	});		
});

function embedVideo(videoId) {
	
	bam.popModule.show({
		htmlContent    : '<div id="video_embed"></div>', 
		width          : 640,
		height 		   : 385,
		overlayOpacity : 0.5,
		preShow        : function(){},
		postShow       : function(){

			var videoPlayer = new FlashObject("http://www.youtube.com/v/"+videoId, "video", "640", "385", "9", "#ffffff");
				videoPlayer.addVariable("hl", "en_US");
				videoPlayer.addVariable("fs", "1");
				videoPlayer.addVariable("showinfo", "0");
				
				videoPlayer.addParam("allowFullScreen", "true");
				videoPlayer.addParam("allowScriptAccess", "always");
				videoPlayer.write("video_embed");
				
		}
	});
	
}

function embedMLBVideo(videoId) {
	
	bam.popModule.show({
		htmlContent    : '<iframe src="http://mlb.mlb.com/shared/media/flvPlayerFrame.jsp?content_id='+ videoId +'&playback_scenario=FLASH_1200K_640X360&autoplay=true&w=640&h=390" width="640" height="390" frameborder="0" marginheight="0" marginwidth="0" scrolling="no"></iframe>', 
		width          : 640,
		height 		   : 390,
		overlayOpacity : 0.5,
		preShow        : function(){},
		postShow       : function(){}
	});
	
}
