
var theframe = $('<iframe frameborder="0" scrolling="auto"></iframe>');
var iframe_href = "";


$(document).ready(function() {

/***************************************************************************************************
  Video light box
***************************************************************************************************/ 

	$('.lightbox-iframe').bind("click",function(){
		
		$('.videoLightBox').remove();
		$('body').append('<div class="videoLightBox"><a href="#" alt="Close video" class="close"><img src="/rio-global/images/close.png"  width="28" height="28"/></a><div class="contentWrap"></div></div>');
			
			iframe_href = $(this).attr("href"); 
		
				$(".videoLightBox").overlay({
					mask: {
						color: '#0F0F0F',
						loadSpeed: 200,
						opacity: 0.9
					},
					onLoad:function(){
								$('.videoLightBox .close').fadeIn(600);
					},
					onBeforeLoad: function() {
						var wrap = this.getOverlay().find(".contentWrap");
						$(theframe).attr({ src: iframe_href, style: 'height:345px; width:541px; border:none; background-color:#FFFFFF;' });
						wrap.html(theframe);
					},
					load: true,
					onClose: function(){
				
									$('.contentWrap').empty();

						/*$(theframe).find("#videoplayer")
					
					
						var myVideoPlayer = document.getElementById("myVideoPlayer_id");
						myVideoPlayer.sendEvent("STOP");*/
						
					}
				});
	
	
			return false;
	});

});











