var fixUlHeight = {
	ul:'',
	height : 0,
	getMaxHeight : function(){
		this.ul.each(function(){			  
			var ulheight = $(this).height();
			if(ulheight > fixUlHeight.height){
				fixUlHeight.height = ulheight;
			}
		});
	},
	
	assignHeight : function(){
		this.ul.each(function(){
			$(this).css('height', fixUlHeight.height + 'px' );
		});
	},
	
	start : function(){
		this.ul = $('#footer-wrap #footer #text-10 ul');
		this.getMaxHeight();
		this.assignHeight();
	}
}
