function voutub( id )
	{

	var text = '<object style="height: 390px; width: 640px"><param name="movie" value="http://www.youtube.com/v/'+id+'?version=3&autoplay=1"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><embed src="http://www.youtube.com/v/'+id+'?version=3&autoplay=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="390"></object>';
	_gaq.push(['_trackEvent', 'Video Onclick', 'Played youtube '+id]);
	document.getElementById(id).innerHTML = text;
	}

function vovimeo( id )
	{
	
	var text = '<iframe src="http://player.vimeo.com/video/'+id+'?autoplay=1" width="640" height="360" frameborder="0"></iframe>';
	_gaq.push(['_trackEvent', 'Video Onclick', 'Played vimeo '+id]);
	var element = 'vimeo'+id;
	document.getElementById(element).innerHTML = text;
	}
