/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


            $(document).ready(function()   {
                var status
                $("#mainPromoSec").fadeOut("slow");
                $("#mainPromoHead").click(function(){
                    if(status=="closed"){
                        $("#mainPromoSec").fadeIn("slow");
                        status="open"      
                    }else{
                        $("#mainPromoSec").fadeOut("slow");
                        status="closed"
                    }
                });
            });
