
/* - menu_effects.js - */
jq(document).ready(function(){

    jq(".submenu:not(.selected)").fadeTo("fast",.25);

    jq(".submenu:not(.selected)").hover(
      function () {
        jq(this).fadeTo("normal",1);
      }, 
      function () {
        jq(this).fadeTo("normal",.25);
      }
    );

    jq("#portal-globalnav > li").hover(
      function () {
        jq(this).children(".submenu:not(.selected)").fadeTo("normal",1);
      }, 
      function () {
        jq(this).children(".submenu:not(.selected)").fadeTo("normal",.25);
      }
    );

});


