/*

Javascript for Drive for a Cause
Created by Rareview Interactive
http://www.rareview.com

*/

/* =jQuery
============================================================================== */
	
$(document).ready(function() {

	/* Main Navigation
	-------------------------------------------------------------------------- */
	
		// append an extra span to make the hover effect work
		
		$('#main-nav li a').append('<span class="hover"></span>');
		
		// make the hover animate in and out
		
		$('#main-nav li a').hover(function() {
			$('.hover', this).stop().animate({'opacity': 1}, 300, 'easeOutSine');
		},function() {
			$('.hover', this).stop().animate({'opacity': 0}, 650, 'easeOutExpo');
		})
	    
}); // end jQuery ready
