$(document).ready(function() {
	
	$("#aQuickLinks").click(function(){
		$this = $(this);
		if(!$this.hasClass("Active")){
			$this.addClass("Active");
			$(".quick-link-1000-expand-bg").show("fast", function () {
				$(".quick-link-1000-expand").animate({"top": "-150px"}, "slow");
				$("#imgQuickLinks").attr("src","img/quick-links-bt-ov.png");
			});
            $("#wrap_footer2").css("z-index", "99");
		}else{
			$this.removeClass("Active");
			$("#imgQuickLinks").attr("src","img/quick-links-bt.png");
			$(".quick-link-1000-expand").animate({"top": "0px"}, "slow", function() {
				$(".quick-link-1000-expand-bg").hide();
				$("#wrap_footer2").css("z-index", "0");
            });
            
		}
		
	});
	 
});


