$(document).ready(function(){

  // Content Top
  
 setTimeout(function() {
     $("#content_top").css("background", "none");
 },5000);
  
 setTimeout(function() {
     $("#content_top").hide();
 },10000);


  // Problematik: Border Bilder
  var imageWrap = $(".csc-textpic-imagewrap").width() + 18;
  
  $(".csc-textpic-imagewrap").css('width', imageWrap+'px');
  
  // Layout mittig  	
  var boxHeight = $("#main").height();
  var htmlHeight =  $("html").height();
  var marginFinal = "-" + boxHeight / 2 + "px";

  if( htmlHeight > boxHeight ) {
    $("#main").css("top", "50%").css("margin-top", marginFinal);
  }
  
  // Kontaktformular
  $("#mailformKommentar").parent().css('clear', 'both').css('height', 'auto').css('width', '560px');
  $("#mailformformtype_mail").parent().css('float', 'none');
  
});
