function switchDay(id){
	$(".spielplan").css("display", "none");
	$("#"+id).fadeIn("slow");

	$("#"+id).css("display", "block");
}


function switchWeek(id){
	$("a.day").css("display", "none");
	$("a.week_"+id).fadeIn("slow");

	$("a.week_"+id).css("display", "block");
}

function displayHideTrailer(object){
	if(object.innerHTML == 'Trailer anzeigen'){
		object.innerHTML = 'Trailer schließen';
		$(".trailer").show("slow")

	}else{
		object.innerHTML = 'Trailer anzeigen';
		$(".trailer").hide();
	}
}



  $(document).ready(function(){
    
	//SPIELPLAN HOVER 
	$(".spielplan .zeit").hover(
      function () {
        $(this).css("background", "#ff9205");
      }, 
      function () {
        $(this).css("background", "#f4f4f4");
      }
    );
    
    //Normal HOVER
	$(".tb_normal tr, .tb_head tr").hover(
      function () {
        $(this).css("background", "#c8c8c8");
      }, 
      function () {
        $(this).css("background", "#f4f4f4");
      }
    );
    
    //Normal Tabelle erste spalte andere Farbe und dick
    $("table.tb_normal td:first-child").css("color", "#E06015");
    $("table.tb_normal td:first-child").css("font-weight", "bold");
    $("table.tb_normal td:first-child").css("text-align", "center");

 });



