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

	
});