$(document).ready(function() 
{
   $('.start_frame img').ifixpng('media/gif/blank.gif');
    $('.weitereFotos').click(function()
      {
        $('.picturesMore').slideToggle();
      });

    $('.weitereTermine').click(function()
      {
        $('.furtherEventsMore').slideToggle();
        $(this).blur();
      });
});
function doContact(message)
{
   var error = false;
   for (var i = 0; i < $('.kontaktForm').find('input, select, textarea').length; i++)
   {
      if ($($('.kontaktForm').find('input, select, textarea')[i]).val() == "")
      {
         if ($($('.kontaktForm').find('input, select, textarea')[i]).attr('id') != "k_fax")
         {
            $($('.kontaktForm').find('input, select, textarea')[i]).css('border','1px solid red');
            error = true;
         }
      }
      else
      {
         $($('.kontaktForm').find('input, select, textarea')[i])
            .css('border','1px solid black')
            .attr('name',$($('.kontaktForm').find('input, select, textarea')[i]).attr('id'));
      }
   }
   if (!error)
   {
      alert(message);
      $('.kontaktFormForm').submit();
   }
   else
   {
      return false;
   }
}

