function showSponsor(){
		var url = "spons.php";
		$.ajax({
			url : url,
			cache : false,
			success : function(req) {
				var height = $(window).height();
				$("#top-spon").html(req).slideDown(100);
				window.location = "#nav-holder";
			}
		});
}


