$(document).ready(function() {
			
			
			var rows = $('.front_footerContainer .footer .footerColFour .languages li').size();
			
			var dropDownHeight = (rows * 29) + 1 + 'px';
			
			var dropDownTime = 200;



	$('.front_footerContainer .footer .footerColFour .languages ul').hover(function() {
			$(this).animate({height: dropDownHeight}, dropDownTime, function() {
			
			$('.front_footerContainer .footer .footerColFour .languages li.hidden').css({display: "block"});
			$('.front_footerContainer .footer .footerColFour .languages li.hidden').animate({opacity: 1}, dropDownTime);
			
			});
			
		}, function() {
			$('.front_footerContainer .footer .footerColFour .languages li.hidden').animate({opacity: 0}, dropDownTime, function() {
			
				$('.front_footerContainer .footer .footerColFour .languages li.hidden').css({display: "none"});
				$('.front_footerContainer .footer .footerColFour .languages ul').animate({height: "30px"}, dropDownTime);
				
			});
		});
}); 
