$(document).ready(function() {
  
  // == Login Form UI Actions ================================================
  
  var formStatus = false; // true == form is open; false == forme is closed
  
  // variables to specify form dimensions
  var x1 = 0;
  var x2 = 0;
  var y1 = 0;
  var y2 = 0;
  
  $('#login-form').insertAfter('#footer'); // move login form to end of document
  
  var positionIndicator = '<span class="position-br" style="display: block; width: 1px; height: 1px; position: absolute; bottom: 0; right: 0;"></span>';   // Snipplet to get bottom-right position
  $('#login-form > :last-child').after(positionIndicator); // place snipplet after last element in form-container
  
  $('#login-trigger').click(function() { // display login form
    var offsetSubheader = $('#subheader').offset(); // get position of #subheader
    var posX = parseInt(offsetSubheader.left) + $('#subheader').width() - $('#login-form').width(); // calculate position for login-form
    $('#login-form').css('left', posX).slideDown('fast', function() { // slide down and set position in callback
       rbPos = $('.position-br').offset();
       x1 = posX; // left
       x2 = rbPos.left; // right
       y1 = offsetSubheader.top; // top
       y2 = rbPos.top; // bottom
      $('#username').focus();
    });
    
    formStatus = true;
    return false;
  });
  
  $('#login-form input.inline-text').each(function() { // hide overlaying <label> elements if there input-elements are NOT empty.
    if ($(this).val()) { // check if value is set
      $(this).prev('label').addClass('focus').hide();
    };
  });
  
  $('#login-form input').focus(function() { // hide label if input-field get focus
    $(this).prev('label').addClass('focus').hide();
  });

  $('#login-form input').blur(function() { // show label if imput-field is empty and hase no focus
    if ($(this).val() == false) { // check if value is empty
      $('#login-form .focus').removeClass('focus').show();
    };
  });
  
  $('#close-login').click(function() { // close login-form onClick
    closeLoginForm();
    return false; // disable action onClick
  });
  
	// TODO: this can be replaced with a .mouseleave() event
  $(document).click(function(event) { // events to perform on mouse-click somewhere on document

    if (formStatus == true) { // check if form is open

      // save mouse-click position
      xClick = event.pageX;
      yClick = event.pageY;
      
      // x1/y1--------------x2/y1
      // |                      |
      // |                      |
      // |    Login - Form      |
      // |                      |
      // |                      |
      // |                      |
      // x1/y2--------------x2/y2
      
      var x0 = 0;
      var y0 = 0;
      
      // work around for unmotivated clicks in webkit
      if (xClick == 0 && yClick == 0) { return; }

      // Check if Click was inside or outside of form
      if (xClick < x1 || xClick > x2) {
        x0 = 1;
      }
      if (yClick < y1 || yClick > y2) {
        y0 = 1;
      }
      
      // If 1 (true) clode form
      if (x0 == 1 || y0 == 1) {
        formStatus = closeLoginForm();
      }
    };
    
  });


  
  // $('#login-form input[type="submit"]').click(function() { // events on submit-button click
  //   return false; // temp disabled
  // });
  // == /Login Form UI Actions ================================================
  
  
  
  $('#global-search-form').addClass('lable-overley');
  $('#global-search-form > #search').attr('value', '');
  
  $('#global-search-form input').focusin(function() {
    var thisId = this.id;
    hideLabel(thisId);
  });
  
  $('#global-search-form input').focusout(function() {
    var thisId = this.id;
    showLabel(thisId);
  });
  

  // == Functions ============================================================
  
  // == Dropdown Menus
  
  // test - move to upper section
  $('.dropdown-menu-content').hide(); // hide dropdown-menu
  
  $('.dropdown-menu').click(function() {
    if ($(".dropdown-menu-content").is(":hidden")) {
      if (this.id) { // if ID is set use this ID
        var objectID = this.id;
        // console.log('true');
        // console.log(objectID);
      } else { // if no ID is set create one
        var date = new Date();
        var objectID = $(this).attr('class') + '-' + date.getTime(); // make unique id
        $(this).attr('id', objectID);
      }
      dropDownMenu(objectID);
    } else {
        slideupFast('.dropdown-menu-content');
    }
    return false;
  });
  
  // /test
  function dropDownMenu (trigger_id) {
    
    // console.log('Trigger ID: ' + trigger_id);
    
    // get Menu-Item position X/Y
    var menuItemH = $(trigger_id).height();
    // console.log(menuItemH);
    var menuPos = $('#'+trigger_id).offset();
    // console.log(menuPos);
    
    var menuPosY = parseInt(menuPos.top) + 25;
    var menuPosX = parseInt(menuPos.left) - 10; // dropdown content has 10px margin.
    
    var dropDownMenuID = $("#"+trigger_id).next('ul').attr('id');
    
    if (!dropDownMenuID) {
      dropDownMenuID = trigger_id + '-content';
      $("#"+trigger_id).next('ul').attr('id', dropDownMenuID);
    };
    
    $("#"+dropDownMenuID).insertAfter('#footer');
    $("#"+dropDownMenuID).css({
        top: menuPosY,
        left: menuPosX
        }).slideDown('fast');

    return true;
  }
  
  $('.dropdown-menu-content').mouseleave(function() {
    if ($(".dropdown-menu-content").is(":visible")) {
      slideupFast('.dropdown-menu-content');
    }
   });
  
  function slideupFast (e) {
    $(e).slideUp('fast');
    return true;
  }
  
  // == /Dropdown Menus
  
  // Hide overlaying <label>
  function hideLabel (e) {
    $('label[for="' + e + '"]').addClass('focus').hide();
    return true;
  }
  // Show overlaying <label>, if <input> is emty, else do nothing
  function showLabel (e) {
    var eVal = $('#' + e).val(); // get <input> value
    if (eVal == false) { // check if value is empty and show <label> again
      $('label[for="' + e + '"]').removeClass('focus').show();
      return true;
    } else {
      return false;
    };
  }
  
  // Close login-form
  function closeLoginForm () {
    $('#login-form').slideUp().removeClass('login-show');
    return false;
  }
  
});

