            jQuery(document).ready(function(){

                jQuery("#progbar").click(function(){

                    if (jQuery("#prognav").is(":hidden")){
                        jQuery("#prognav").fadeIn("slow");
                    }
                    else{
                        jQuery("#prognav").fadeOut("slow");
                    }
                });
                
            });
