// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

$(document).ready(function () {

  // ---------------------------- Footer Slide  
  var $lostClicked;
  
  $('#lost').toggle(function() {
    $lostClicked = true;
    $('#footer').animate({bottom: '-163px'}, 500);
  }, function() {
    $('#footer').animate({bottom: '-353px'}, 200, function(){ $lostClicked = false });
  });
   
  $('#lost').hover(function() {
      if(!$lostClicked) $('#footer').animate({bottom: '-348px'}, {queue:false, duration:200});
  }, function() {
      if(!$lostClicked) $('#footer').animate({bottom: '-353px'}, {queue:false, duration:100});
  });

});
