﻿/// <reference path="jquery-1.3.2.js" />
$(document).ready(function() {
    $("a.menuSuspensoGuia").click(function() {
        $(this).parent().parent().children("div").toggle();
    });
});

