$(document).ready(function(){
	// Hide Comment on This Form
	$('#commentOnThis').hide();
	$('<p class="button"><a id="showComments" href="javascript:;">comment on this</a></p>').insertBefore('#commentOnThis');
	$('#showComments').click(function(){
		$('#commentOnThis').slideToggle();
	});
	
	// Transform YouTube URLs
	$('#comment').html($('#comment').html().replace(/(http:\/\/www\.youtube\.com\/watch\?v=)([^ &]+)([^ <]+)/gi, '<a id="youTube$2" class="youTube" href="javascript:;" url="http://www.youtube.com/v/$2" origurl="$1$2">$1$2$3</a>'));
});