$(document).ready(function() 
{
   $('#nr-order-link').click(function() 
   {
      if ($('#ajax-container-form iframe').length == 0) 
      {
         $('#ajax-container-form').append('<iframe id="iframe-form" name="iframe-form" frameborder="0" allowtransparency="1" src="/wp-content/themes/color-blocks/form/form.php" style="width:888px; height:650px;" ></iframe>');         
         $('#nr-order-link').html("Загрузка...").prepend('<img style="margin-right:10px;" src="/wp-content/themes/color-blocks/images/ajaxLoader.gif" alt="" title="" />');
         $('#iframe-form').load(function() {
            $('#nr-order-link').html("Свернуть форму").children().remove();
            openCloseForm();
            $('#iframe-form').contents().find('#form-close').click(function() {
               openCloseForm();
               $('#nr-order-link').html("Заказать мне работу")
            });
         });
      }
      else{
          openCloseForm();
          if ($('#nr-order-link').html() == "Заказать мне работу") {
            $('#nr-order-link').html("Свернуть форму") 
          }
          else
          {
            $('#nr-order-link').html("Заказать мне работу") 
          };
          
      };
      return false;
   });
});

function openCloseForm() {
   $('#ajax-container-form').slideToggle();
};

