// JavaScript Document
// Rollover effect for images in the Main Navigation

	$(function() {
		$('#mainNav a').animate ({
			"opacity" : 1
		});
		
		$('#mainNav a').hover (function() {
			$(this).stop().animate ({ "opacity" : .5});
		}, function() {
			$(this).stop().animate ({ "opacity" : 1});
		});
		
	});
	

