$(function() {
	$('input, textarea').focus(function() {
		$(this).addClass('active');
	}).blur(function() {
		$(this).removeClass('active');
	});

	$('#main').css('min-height', $(window).height() - $('#header').outerHeight() - $('#footer').outerHeight() - 46);
});
