var embedHoverOff = 0;

function embedHover() {
	$('#playerEmbed').hover(function() {
		if (embedHoverOff > 0) 
			clearTimeout(embedHoverOff);
		$('#embedHover').show();
	}, function() {
		embedHoverOff = setTimeout('$("#embedHover").hide();', 1000);
	}).click(function() {
		return false;
	});
	$('#embedHover').hover(function() {
		clearTimeout(embedHoverOff);
	}, function() {
		embedHoverOff = setTimeout('$("#embedHover").hide();', 1000);
	});
}

function ppLightbox() {
	var flashvars = {};
	var params = {
		menu: 'false',
		wmode: 'transparent'
	};
	var attributes = {
		allowscriptaccess: 'always'
	};
	$("body").append('<div id="screen" style="display: none;">&nbsp;</div><div id="lightbox" style="display: none;"><a href="#" title="Embed" id="playerEmbed"><img src="images/button_lightbox_embed_off.gif" alt="Embed" width="63" height="20" /></a><a href="demo/" title="Get Demo" id="playerGetDemo"><img src="images/button_lightbox_getDemo_off.gif" alt="Get Demo" width="91" height="20" /></a><div id="embedHover" style="display: none;"><p>Copy and paste this embed code to display the video in your webpage.</p><form id="embedText"><input type="text" value="&lt;object width=&quot;620&quot; height=&quot;385&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.socialtalk.com/swf/media_player.swf&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.socialtalk.com/swf/media_player.swf&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;620&quot; height=&quot;385&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot;&gt;&lt;/embed&gt;&lt;/object&gt;" /></form></div><a href="javascript:closeLightbox();" title="Close player" id="playerClose"><img src="images/button_lightbox_close_off.gif" alt="Close player" width="14" height="14" /></a></div>');
	$('#homeMainLinks li.watchVideo a').click(function() {
			var pageSize = getPageSize();
			$("#screen").css({
				'height': pageSize[1] + 'px',
				'opacity': '0.5'
			}).fadeIn(500);
			$('#lightbox').fadeIn(500, function() {
				$('<div id="flashWrapper"><div id="flashPlayer">&nbsp;</div></div>').insertBefore('#playerEmbed');
				swfobject.embedSWF('swf/media_player.swf', 'flashPlayer', 620, 385, '10.0.0', 'swf/expressInstall.swf', flashvars, params, attributes);
			});
			return false;
	});
	embedHover();
}

function closeLightbox() {
	$('#screen').fadeOut(500);
	$('#lightbox').fadeOut(500);
	setTimeout('$("#flashWrapper").remove();', 500);
}