$(document).ready(function(){
			

		
// Zebra
		$("table.give tr:odd").css("background-color", "#EBE4DE");
  		$("table.give tr:even").css("background-color", "#fff");
  		
// Read More
		$('.readmore a').hover(
			function() { $(this).children("img.first").css('display', 'none');
						$(this).children("img.second").css('display', 'block'); },
			function() { $(this).children("img.second").css('display', 'none');
						$(this).children("img.first").css('display', 'block');
		});
		
// Friend Button
		$('.friendbutton a').hover(
			function() { $(this).children("img.first").css('display', 'none');
						$(this).children("img.second").css('display', 'block'); },
			function() { $(this).children("img.second").css('display', 'none');
						$(this).children("img.first").css('display', 'block');
		});
		
// Subnav
		$('ul#subnav li a').hover(
		   	function(){ $(this).animate({ paddingLeft: "3px" }, "fast"); },
		   	function(){ $(this).animate({ paddingLeft: "0" }, "fast");
		});

			
	
// Email hider
		$(function(){
		var spt = $('span.mailme');
		var at = / at /;
		var dot = / dot /g;
		var addr = $(spt).text().replace(at,"@").replace(dot,".");
		$(spt).after('<a href="mailto:'+addr+'" title="Send an email">'+ addr +'</a>')
		.hover(function(){window.status="Send a letter!";}, function(){window.status="";});
		$(spt).remove();
		});

		 
}); 
	    


	
	
	


