﻿/*::::::::::::::::::::::::::::::::::::::::::::
		Birdies for Babies
		Copyright © 2010 McMurry
::::::::::::::::::::::::::::::::::::::::::::*/

$(function(){
	// Menu
	$('#header .menu li a').removeAttr('title').css('opacity', '0');
	$('#header .menu li a').hover(function() {
		$(this).stop().animate({ opacity: 1 }, 'medium');
	}, function() {
		$(this).stop().animate({ opacity: 0 }, 'slow');
	});
	
});
