$(document).ready(function(){

	$(".VideoClipLink").click(function(){
			targetUrl = $(this).attr("url");

			videoHtml = '<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" \
			  border="0" width="86" height="54" > \
				<param name="movie" value="' + targetUrl + '" /> \
				<param name="quality" value="High" /> \
				<embed src="' + targetUrl + '" \
				    pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" \
				    width="86" \
				    height="54"\
				    quality="High" \
				/>\
			</object>';
			
	//		alert (videoHtml);
	
			$(this).replaceWith(videoHtml);
			return false;
		
	});
});

