/********************************************************************/
/* jQuery-Plugin Multiple Video on Same Page						*/
/********************************************************************/
jQuery(document).ready(function() {
	jQuery(".ShowVideo").each(function () {
		if(this.dialogDiv) return this;
		var $this = jQuery(this);
		this.dialogDiv = $this.next(".dialog");
		this.dialogDiv.dialog({autoOpen: false, modal: true, close: function(ev, ui) { 
			var $object = jQuery("object", this);
			if($object.length == 0)
				$object = jQuery("embed", this);

			var playerObject = $object.clone();
			$object.remove();
			$object = null;
			jQuery(this).append(playerObject);
		}});
		return this;
	}).click(function(){
		this.dialogDiv.dialog( "open" );
		return false;
	});
});
