$(document).ready(
			function()
			{
				$(document).ready(function($)
				{

					$('.column_uitvoeren').makeacolumnlists({cols: 3, colWidth: 165, equalHeight: 'ul', startN: 0});

					var height_footernav =  $("#footernav").height();

				    height_footernav_small = "70px";

					$("#footernav").css("height",height_footernav_small);

					$("#footernav").hover(function()
		            {
                         $("#footernav .footernav_hover").css("display","none");
					     $("#footernav").animate(
						 {
					     	height: height_footernav+"px"
						 }, 200,'linear', function()
						 {});
		        	},
		            function()
		            {
					     $("#footernav").animate(
						 {
					     	height: height_footernav_small
						 }, 200,'linear', function()
						 {});
					   	 $("#footernav .footernav_hover").css("display","block");
		        	});
					
				});
			}
		);   
