function init(){
	$('#video_url').focus(function(){
		$(this).select();
	});
	$('#video_url').click(function(){
		$(this).select();
	});
}

$(document).ready(init);
