
$(document).ready(function(){



  // popup kontakt-form extern
  $('a#previewCE').click(function(){
    tmp = $(this).attr("href");
    if (tmp) {
      tmp = $(this).attr("href").split('#');
      xlink = tmp[0];
      dims = tmp[1];
      tmp3 = dims.split('x');
      
      xwidth = parseInt(tmp3[0]) + 20;
      xheight = parseInt(tmp3[1]) + 20;
      
      
      popWinMedia = window.open(xlink, 'popup', "width=" + xwidth + ",height=" + xheight + ",fullscreen=no,location=no,menubar=no,status=no,scrollbars=yes,resizable=yes,titlebar=yes");
      popWinMedia.focus();
      return false;
    }
  });
  
  
  // popup kontakt-form extern
  $('#kontaktPopup a').click(function(){
    tmp = $(this).attr("href");
    if (tmp) {
      popWinMedia = window.open(tmp, 'popup', "width=655,height=630,fullscreen=no,location=no,menubar=no,status=no,scrollbars=yes,resizable=yes,titlebar=yes");
      popWinMedia.focus();
      return false;
    }
  });
  
  // Popup Kontaktformular rechte Spalte
  $('a.rechtespalte_kontakt').click(function(){
    tmp = $(this).attr("href");
    if (tmp) {
      popWinMedia = window.open(tmp, 'popup', "width=800,height=500,fullscreen=no,location=no,menubar=no,status=no,scrollbars=yes,resizable=yes,titlebar=yes");
      popWinMedia.focus();
      return false;
    }
  });
  
  $('#wrapperlink1').mouseover(function(){
    $('#wrapperlink1').css("background-color", "#e2efef");
  });
  $('#wrapperlink1').mouseout(function(){
    $('#wrapperlink1').css("background-color", "#ffffff");
  });

  $('#wrapperlink2').mouseover(function(){
    $('#wrapperlink2').css("background-color", "#e2efef");
  });
  $('#wrapperlink2').mouseout(function(){
    $('#wrapperlink2').css("background-color", "#ffffff");
  });
  
  $('#wrapperlink3').mouseover(function(){
    $('#wrapperlink3').css("background-color", "#e2efef");
  });
  $('#wrapperlink3').mouseout(function(){
    $('#wrapperlink3').css("background-color", "#ffffff");
  });
  
});


