$(document).ready(function(){

	$('#player').youTubeEmbed({
	video			: 'http://www.youtube.com/watch?v=CT5RIQS2Dbw&hd=1',
	width			: 560, 		// Height is calculated automatically
	progressBar	: true		// Hide the progress bar
});

	$('form').submit(function(){
		$('#player').youTubeEmbed($('#url').val());
		$('#url').val('');
		return false;
	});

});

