function showWeddingVideo(anchor) {
	
	var video = anchor.href.substring(anchor.href.lastIndexOf("/") + 1, anchor.href.length);
	var code = '<div style="width:350px;"><iframe style="border:none; width:350px; height:270px;" src="player.php?src='+video+'" ></iframe></div>';
	var c = $(code);

	c.dialog({
		modal:true, 
		title: anchor.title, 
		width: "auto", 
		height: "auto", 
		resizable: false,
		close: function() { c.dialog("destroy"); c.html(""); }
	});

	return false;
}

