/*
$(document).ready(function() {
	jQuery.easing.def = "easeOutBounce";
	$('.footer-frame .column li').mouseenter(function(){
		if ($(this).hasClass('active')) {
			return false;
		} else {
			$(this).find('.frame').animate({
				height: '80px'
			}, 1000);
			$(this).siblings().find('.frame').animate({
				height: '40px'
			}, 1000);
			$('.footer-frame .column li').removeClass('active');
			$(this).addClass('active');
		}
	});
});
*/
