jQuery(document).ready(function() {
	var BaseHeight=jQuery('#socfan').height();
	var FullHeight=jQuery('#social').height();
	if (FullHeight>BaseHeight) {
		jQuery('#socfan').hover(
			function() {
				jQuery(this).animate({
					height: FullHeight+'px'
				}, {duration: 400, queue: false});
			},
			function() {
				jQuery(this).animate({
					height: BaseHeight+'px'
				}, {duration: 400, queue: false});
			}
		);
	}
});
