/* youtube preview image */
$(function() {
	$('#myytplayer').hide();
	
	$('#c82').
		append(
			$('<img src="fileadmin/Logos/youtube_preview.jpg" />').hover(function() {
				$(this).css({ 'cursor' : 'pointer' });
			}).click(function() {
				$(this).hide();
				
				var params = { allowScriptAccess: "always", wmode: "transparent" };
				var atts = { id: "myytplayer" };
				swfobject.embedSWF("http://www.youtube.com/v/RuVS_68mPi4&hl=de_DE&fs=1?rel=0&enablejsapi=1&playerapiid=ytplayer", 
					       "ytapiplayer", "449", "361", "8", null, null, params, atts);
					       
				setTimeout(function() {
					if ($('#myytplayer').length) {
						$('#myytplayer')[0].playVideo();
					}
				}, 1000);
			})
		);
	
	$('#c82').css({ 'margin-bottom' : '15px' });
});

