$(document).ready(function(){

      $('a.mediavid').bind('click',function(){  
	  var theurl = $(this).attr('title');
	  		$.ajax({
				type: "POST",
				url: "/bmt_site/ajax_php/video_preview.php",
				data: "videourl="+theurl,
				success: function(msg){
	  				$('#video_preview').html(msg);
				}
	  		});

  	

/*
var embers='<object width="700" height="434"><param name="movie" value="http://www.youtube.com/watch?v='+embers+'&hl=en&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/watch?v='+embers+'&hl=en&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="700" height="434"></embed></object>';

$('#video_preview').embed(embers);	

alert(embers)*/
}); 

});