/*
 * This function is called in lightboxcallback (jquery.customer.js)
 */
lightboxOnLoad = function(){
		////////////////////////////////////////// play the videoplayer, This part should be here for SM001 and NU001
		$(".swf").each(function(){
			var videoPlayer = $("#videoplayer")[0];
			var videoMain = $(this).attr("rel");
			var path = $(this).attr("path");
			var w = ($(this).attr("width") == undefined) ? 400 : $(this).attr("width");
			var h = ($(this).attr("height") == undefined) ? 340 : $(this).attr("height");
			
			$(this).media({
				flashVersion: '9',
				width: w,
				height: h,
				params: {
					wmode: 'transparent'
				},
				flashvars: {
					flvsource: videoMain,
					path:path
				}
			});
		});
		
		$("a.videoLink").click(function(){
			var videoPlayer = $("#videoplayer")[0];		
			var videoMain = $(".swf:eq(0)").attr("rel");//'videos/Popeye_forPresiden768K_001.flv';
			var videoPlayer = $("#videoplayer")[0];
			var flv = this.href || $(this).attr('href');
			videoPlayer.playMedia(flv);//playMedia can play both FLV and MP3 files, 
			return false;
		});
};

$(document).ready(function(){
	if ($(".swf").size() > 0) {
		$(".swf").each(function(){
			var videoPlayer = $("#videoplayer")[0];
			var videoMain = $(this).attr("rel");
			var path = $(this).attr("path");
			var w = ($(this).attr("width") == undefined) ? 400 : $(this).attr("width");
			var h = ($(this).attr("height") == undefined) ? 340 : $(this).attr("height");
			
			$(this).media({
				flashVersion: '9',
				width: w,
				height: h,
				params: {
					wmode: 'transparent'
				},
				flashvars: {
					flvsource: videoMain,
					path:path
				}
			});
		});
	}
	$(".sideBarCover .video a.lbOn").unbind().detDialog({
		callback:lightboxOnLoad
	});
})
