$(function(){
	// link hover toggle function
	$("a").hover(function () {
		  $(this).animate({ color: "#333" }, "fast");
	 }, 
	 function () {
		  $(this).animate({ color: "#BBB" }, "slow");
	 });
	
	
	// Image hover toggle function for 'AddThis' Button
	/*
	$("a.addthis_button").hover(function () {
		  $("a.addthis_button img").fadeIn("fast");
	 }, 
	 function () {
		  $("a.addthis_button img").fadeOut("slow");
	 });
	*/
	
	
	// Menu hover toggle function
	$("a.hoverImg").hover(function () {
		  $("a.hoverImg img").fadeIn("fast");
	 }, 
	 function () {
		  $("a.hoverImg img").fadeOut("slow");
	 });
	
});