$(document).ready(function(){
    $(document).pngFix(); 
   
	$('A[rel="external"]').click( function() {
	window.open( $(this).attr('href') );
	return false;
	});						   
						   
	
	$('#footernav a, #copyrightnav a').hover(function(){
    $(this).stop().animate({color: '#4E499E'});
}, function() {
    $(this).stop().animate({color: '#373471'});
});	
	
	$('#catnav a').hover(function(){
    $(this).stop().animate({color: '#A8A7AC'});
}, function() {
    $(this).stop().animate({color: '#485656'});
});	

	

  
  });
