jQuery(document).ready(function(){
    if(jQuery("ul.showhide").length > 0)
    {
        jQuery("ul.showhide li div").hide();
        jQuery("ul.showhide li:first-child div").show();
        jQuery("ul.showhide li").click(function(){
            jQuery("ul.showhide li div").hide("slow");
            jQuery(this).find("div").show("slow");
        });
    }
});
