
$( function() {
 
	$( "div.timetable_course" ).hover(function(){
		
		if ($(this).hasClass('rueckenfit') == true)$('div.rueckenfit').css('background-color', '#e6dfd0');
		if ($(this).hasClass('50plus') == true)$('div.50plus').css('background-color', '#f4c2c7');
		if ($(this).hasClass('aesobicfatburner') == true)$('div.aesobicfatburner').css('background-color', '#c7d2bd');
		if ($(this).hasClass('bop') == true)$('div.bop').css('background-color', '#fae1e7');
		if ($(this).hasClass('bauchxpress') == true)$('div.bauchxpress').css('background-color', '#d2cecd');
		if ($(this).hasClass('bodystyling') == true)$('div.bodystyling').css('background-color', '#fff4d1');
		if ($(this).hasClass('danceaerobic') == true)$('div.danceaerobic').css('background-color', '#eacfda');
		if ($(this).hasClass('fitmix') == true)$('div.fitmix').css('background-color', '#e2bdcf');
		if ($(this).hasClass('langhantelworkout') == true)$('div.langhantelworkout').css('background-color', '#f5ccc2');
		if ($(this).hasClass('pilates') == true)$('div.pilates').css('background-color', '#fad5af');
		if ($(this).hasClass('rueckenintensiv') == true)$('div.rueckenintensiv').css('background-color', '#d0c7bb');
		if ($(this).hasClass('step1') == true)$('div.step1').css('background-color', '#b6afd2');
		if ($(this).hasClass('step2') == true)$('div.step2').css('background-color', '#b6afd2');
		if ($(this).hasClass('taibo') == true)$('div.taibo').css('background-color', '#ddc6a5');
		if ($(this).hasClass('wirbelsgymnastik') == true)$('div.wirbelsgymnastik').css('background-color', '#e9eba4');
		if ($(this).hasClass('xtreamedrill') == true)$('div.xtreamedrill').css('background-color', '#d2bab6');
		if ($(this).hasClass('zumba') == true)$('div.zumba').css('background-color', '#F4F2D0');
		if ($(this).hasClass('yoga') == true)$('div.yoga').css('background-color', '#b2cee7');        
           
	}, function() {
		$('div.timetable_course').css('background-color', '#FAFAFA');
	});

});


