$(function(){
	$("#FooterFix").animate({"height":"70px"},1200,"easeInQuart");
    
	$("#Stick").toggle(function(){
	  $("#FooterFix").animate({"height":"135px","marginTop":"-65px"},300);
	  $(this).attr("src","/images/fstick.png");
    },function(){
      $("#FooterFix").animate({"height":"70px","marginTop":"0px"},300);
 	  $(this).attr("src","/images/fstick_o.png");
    }
	);
});

