$("document").ready(
	function(){
		$(".more-recipe-list:eq(0)").addClass("no-bg"); // This hack is for removing the border for the first page
		$height = $("#parDiv").height(); // This hack is for calculating the long height in the left column
		$("#sepDiv").css({"height":$height}); 
		$(".page_item:last").addClass("noborder"); // This hack adds noborder class for the last item in the bottom of the page. 
		$(".footer .wrapper .menu").css({"width":$(".menu ul").width()+5});
	});
