var footerswitch = false;

function expandFunction() {
	$("#footer").animate({top:"-5px"},500,function(){
		$("#bottombutton").html("&#9650");
		$("#expandbutton").unbind("click");
		$("#expandbutton").click(collapseFunction);
	});
}

function collapseFunction() {
	$("#footer").animate({top:"-110px"},500,function(){
		$("#bottombutton").html("&#9660");
		$("#expandbutton").unbind("click");
		$("#expandbutton").click(expandFunction);
	});
}

$(document).ready(function(){
	$("#expandbutton").click(expandFunction);
});
