﻿$(
    function(){
        $("div#qtForm").css({"height": "0px"});
        var expand = true;
        $("div#qtButton").click(function(){                        
                if(expand){                        
                    //$(this)
                    //    .animate({"top": "+=200px"}, "fast")
                    //    .animate({"top": "-=40px"}, "fast");                                
                    $("div#qtForm")
                        .animate({"height": "150px"}, "fast")
                        .animate({"height": "110px"}, "fast");                            
                    expand = false;
                }
                else{
                    //$(this)
                    //    .animate({"top": "+=40px"}, "fast")                           
                    //    .animate({"top": "-=200px"}, "fast");                            
                    $("div#qtForm")
                        .animate({"height": "150px"}, "fast")                                
                        .animate({"height": "0px"}, "fast");
                    expand = true;
                } 
                $("div.qtLink").toggle();                       
            }
        );
    }
)