	$(document).ready(function() {
		$("h1.home").click(function(){
			window.location = "index.html";
		});

		$("div#charities ul li").hover(function(){
			$(this).toggleClass("hover");
		},function(){
			$(this).toggleClass("hover");
		});
		
/*		$("div#charities ul li").click(function(){
			window.location = $(this).find("a").attr("href");
		});
*/
	});