$(document).ready(function()
{
	$("#displayAds").css("display", "none");
 $("#videoTabs").tabs();
	$('a.email').nospam({ replaceText: true });
 
 $("#videoTabs").css("font-size", "80%");
 $(".ui-widget-content").css("background", "url(\"images/ui-bg_highlight-soft_100_eeeeee_1x100.png\") repeat-x scroll 50% top #fff");
 
 var flash = '<embed src="xxx" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed>';
 //----------------------------------------------------------------------------
 
 $('.showVideo').click(function(event)
	{
		event.preventDefault();
  $("#displayAds").css("display", "block");
		
		var titel = $(this).attr('title');
		var url = $(this).attr('rel');
		var film = flash.replace(/xxx/g, url);
		$("#flashContent").html(film);
		
		$("#videoContainer").attr('title', titel);
		
		$("#videoContainer").dialog(
		{
			bgiframe: true,
			width: 520,
			height: 570,
			modal: true,
			overlay:
			{
				backgroundColor: '#000',
				opacity: 0.8
			},
			buttons:
			{ 
				"Ok": function() { $(this).dialog("close"); }
			}
		});
	});
 //----------------------------------------------------------------------------
});
//---------------------------------------------------------------------------
