	function changeVideo(divId, ytlink) {
		$('#'+divId).fadeOut("fast");
		$('#'+divId).html('<object width="560" height="445"><param name="movie" value="'+ytlink+'&hl=en&fs=1&autoplay=1&hd=1&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="'+ytlink+'&hl=en&fs=1&autoplay=1&hd=1&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="445"></embed></object>');
		$('#'+divId).fadeIn("fast");
	}