$(document).ready(function(){


	$('#vid1').bind('click', function() {
		$(this).parent().parent().children('div').removeClass('anzeigen');
		$(this).parent().parent().children('div.clemons').addClass('anzeigen');
	});

	$('#vid2').bind('click', function() {
		$(this).parent().parent().children('div').removeClass('anzeigen');
		$(this).parent().parent().children('div.suma').addClass('anzeigen');
	});

	$('#vid3').bind('click', function() {
		$(this).parent().parent().children('div').removeClass('anzeigen');
		$(this).parent().parent().children('div.ceddia').addClass('anzeigen');
	});

	$('.startstopvid').bind('mouseenter', function() {
		$('img.startstopvid').show();
	});

	$('.startstopvid').bind('mouseleave', function() {
		$('img.startstopvid').hide();
	});


	
});



