Login Panel
$(document).ready(function(){ $('#login a').toggle(function(){ $(this) .addClass('active') .next('from') .animate({'height' : 'show'},{ duration: 'slow', easing: 'easeOutBounce' }); },function(){ $(this) .removeClass('active') .next('form') .slideUp(); }); }); <!doctype html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>…