// JavaScript Document
$(function(){
  // Document is ready
  $(".lng td").hover(
    function () {
 //     $(""+$(this).attr("class")+"").children().fadeTo("fast", 0.70)
  $(this).fadeTo("fast", 0.70);
    },
    function () {
    //  $(""+$(this).attr("class")+"").children().fadeTo("fast", 1)
	  $(this ).fadeTo("fast", 1);
    });
  
  var datum = new Date();
  var curr_year = datum.getFullYear();
  
  $("#copy_jaar").html(curr_year);
});

