$(document).ready(function(){
	var a = $(document).height();
	var b = $(".footer").height();
	var c = a-b;
	$(".container").height(c);
	$(".footer").attr({"position":"absolute","top":$(document).height()});
	$("ul.pullul").hide();
	$(".pulldown").click(function(){
		$(this).next("ul.pullul").slideToggle();
	});
});
