// author rollovers
$(function() {
	$('.authors img').hover(
		function() {
			var id = $(this).attr('id');
			var src = '';
			
			$('.authors img').each(function() {
				if (id != $(this).attr('id')) {
					src = $(this).attr('src').replace('_over', '_off');
					$(this).attr('src', src);
				} else {
					$('#subnav_'+$(this).attr('name')+' a').css({'color':'#94a545'});
				}
			});
		},
		
		function() {
			var id = $(this).attr('id');
			var src = '';
			
			$('.authors img').each(function() {
				if (id != $(this).attr('id')) {
					src = $(this).attr('src').replace('_off', '_over');
					$(this).attr('src', src);
				} else {
					$('#subnav_'+$(this).attr('name')+' a').css({'color':'#77787b'});
				}
			});
		}
	);
	
	$('.rollover').rollovers();
});