// JavaScript Document

	function embedVideo(url){ 
		
		var url_length = url.length;
		
		var v = url.substring(31,url_length);
		
		//console.log(v);
		
		var html  = '';
		
		html +='<object width="640" height="385">';
		html +='<param name="movie" value="http://www.youtube.com/v/'+v+'&hl=pt_PT&fs=1&"></param>';
		html +='<param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param>';
		html +='<embed src="http://www.youtube.com/v/'+v+'&hl=pt_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed>';
		html +='</object>';
		
		
		$('#youtube_embed').html(html);
	};
