jQuery(function(){
	$('#nav-wrap li a').animate({backgroundColor: '#015193'});
	$('#nav-wrap li a').animate({backgroundColor: '#000000'})

	//popup links
    $('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
	 
	//email spam protection
    $('.email').each(function() {
		var $email = $(this);
		var address = $email.text()
        .replace(/\s*\[at\]\s*/, '@')
        .replace(/\s*\[dot\]\s*/g, '.');
		$email.html('<a href="mailto:' + address + '">'
        + address +'</a>');
    });
	
	$('#nav-wrap li a').hover(function() {
        $(this).animate({backgroundColor: '#015193'});
      }, 
      function () {
        $(this).animate({backgroundColor: '#000000'})
      }
    );
});