$(document).ready(function() {
  
  $('div#footer input[type="text"], div#footer textarea, div.col1 input[type="text"], div.col1 textarea').show().addClass('required');
  
  if($("#mailform").length) {
    $("#mailform").validate();
  }
  
  if($("div.col1 form").length) {
    $("div.col1 form").validate();
  }
  
  $('div#footer label[for="mailformname').addClass('name');
  
  $('div#footer input[name="name"]').focus(function() {
    $('div#footer label[for="mailformname"]').remove();
  });
  
  $('div#footer input[name="email"]').focus(function() {
    $('div#footer label[for="mailformemail"]').remove();
  });
  
  $('div#footer textarea').focus(function() {
    $('div#footer label[for="mailformnachricht"]').remove();
  });
  
  if($("div.col2:empty").length) {
    $(this).remove();
    $('div.col1').css('width', '100%')
  }
  
  $('a[href*=".xls"]').addClass('excel');
  $('a[href*=".pdf"]').addClass('pdf');
  
  $('div.termine div#c6 tr:gt(1)').remove();

  $('div#content td.content td:nth-child(1)').addClass('eq1');
  $('div#content td.content td:nth-child(2)').addClass('eq2');
  $('div#content td.content td:nth-child(3)').addClass('eq3');
  $('div#content td.content td:nth-child(4)').addClass('eq4');
  $('div#content td.content td:nth-child(5)').addClass('eq5');
  $('div#content td.content td:nth-child(6)').addClass('eq6');
  
  /*$('table.contenttable tbody tr').append('<td style="width: 200px;" class="tablehide">Veranstalter</td>');
  $('#c22 table tbody tr').append('<td style="width: 200px;" class="tablehide"></td>');*/
  
});
