﻿		$(document).ready(function() {
			$('#top_nav img').each(function() {	
				$(this).animate({ opacity: 0.5 }, 500);
				$(this).hover(function() {
					$(this).stop().animate({ opacity: 1.0 }, 500);
				},
			   function() {
				   $(this).stop().animate({ opacity: 0.5 }, 500);
			   });
			});
		});
		
		$(document).ready(function() {
			$('#donation a').each(function() {	
				$(this).hover(function() {
					$(this).stop().animate({ opacity: 0.5 }, 500);
				},
			   function() {
				   $(this).stop().animate({ opacity: 1.0 }, 500);
			   });
			});
		});
		
		$(document).ready(function() {
			$('#sub-header a').each(function() {	
				$(this).hover(function() {
					$(this).stop().animate({ opacity: 0.7 }, 500);
				},
			   function() {
				   $(this).stop().animate({ opacity: 1.0 }, 500);
			   });
			});
		});
		
		$(document).ready(function() {	
				$("#footer-donate").animate({ opacity: 0.6 }, 100);
				$("#click-here-to-d").hover(function() {
					$("#footer-donate").stop().animate({ opacity: 0.9 }, 500);
				},
			   function() {
				   $("#footer-donate").stop().animate({ opacity: 0.6 }, 500);
			   });
		});
		
		$(document).ready(function() {
			$("#main_nav li:last a").css({width: '142', fontWeight: 'bolder'});
		});
		
		$(document).ready(function() {
			$("#flash").animate({ opacity: 0.99}, 1500);
			$("#flash").fadeIn(500);
		});
