$(document).ready(function(){
	$('#closeBtn').click(function () {
		if ($("#dldbanner").css("height") == "114px") {
			$("#dldbanner").animate({ height: "18" }, 1000 );
			$("div.closeBtn").animate({ marginTop: "-94" }, 1000, function() {
				$("#closeBtn").animate({backgroundPosition: "(4px -11px)"}, 1);
				$("#closeBtn").text('Open');
				$("div.btn2").fadeIn('slow');
				$(".close").animate({'color': '#ffffff'}, 500);
			});
		} else {
			$("div.btn2").fadeOut('slow')
			$("#dldbanner").animate({ height: "114" }, 1000 );
			$(".close").animate({'color': '#64696E'}, 500);
			$("div.closeBtn").animate({ marginTop: "0" }, 1000, function() {
				$("#closeBtn").animate({backgroundPosition: "(4px 0px)"}, 1);
				$("#closeBtn").text('Close');
			});
		}
	});

	
});