jQuery(function($) {

$('#nav_main').find('div.menuItemDepth1').live('mouseover mouseout', function(event) {
  if (event.type == 'mouseover') {
    $(this).addClass('menuItemDepth1jq');
  } else {
    $(this).removeClass('menuItemDepth1jq');
  }
});
$('#nav_main').find('div.menuItemDepth2').live('mouseover mouseout', function(event) {
  if (event.type == 'mouseover') {
    $(this).addClass('menuItemDepth2jq');
  } else {
    $(this).removeClass('menuItemDepth2jq');
  }
});
$('#nav_main').find('div.menuItemDepth3').live('mouseover mouseout', function(event) {
  if (event.type == 'mouseover') {
    $(this).addClass('menuItemDepth3jq');
  } else {
    $(this).removeClass('menuItemDepth3jq');
  }
});
$('#nav_main').find('div.need_gradient').live('mouseover mouseout', function(event) {
  if (event.type == 'mouseout') {
    $(this).addClass('gradient');
  } else {
    $(this).removeClass('gradient');
  }
});

$('#nav_subnav1').find('div.menuItem').live('mouseover mouseout', function(event) {
  if (event.type == 'mouseover') {
    $(this).removeClass('gradient');
    $(this).addClass('menuItemjq');
  } else {
    $(this).addClass('gradient');
    $(this).removeClass('menuItemjq');
  }
});

$('#nav_subnav2').find('div.need_gradient').live('mouseover mouseout', function(event) {
  if (event.type == 'mouseout') {
    $(this).addClass('gradient');
  } else {
    $(this).removeClass('gradient');
  }
});
$('#nav_subnav2').find('div.menuItem').live('mouseover mouseout', function(event) {
  if (event.type == 'mouseover') {
    $(this).addClass('menuItemjq');
  } else {
    $(this).removeClass('menuItemjq');
  }
});

});

function EC1000_decryptMailString(enc,offset) {
        var dec = "";
        var len = enc.length;
        for(var i=0; i < len; i++)      {
                var n = enc.charCodeAt(i) + offset;
                if ( n < 0 )
                {
                  n = n + 256
                }
                dec += String.fromCharCode(n);
        }
        return dec;
}
 // decrypt spam-protected emails
function linkTo_UnCryptMailto2(s)       {

        location.href = EC1000_decryptMailString(s,-1);
}

// -->
        /*]]>*/

