jQuery(document).ready(function(){
	jQuery('#socialNetworking > ul > li > a > span').addClass('hover').each(function(){
		var span = jQuery(this).css('opacity', 0);
		jQuery(this).hover(function(){
			span.stop().fadeTo(300, 1);
		}, function(){
			span.stop().fadeTo(300, 0);
		});
	});
		
	// For fading in and out background for menu items on homepage...
	jQuery('ul.clear li > a > span').addClass('hover').each(function(){
		var span = jQuery(this).css('opacity', 0);
		jQuery(this).hover(function(){
			span.stop().fadeTo(600, 1);
		}, function(){
			span.stop().fadeTo(600, 0);
		});
	});
	
	// For funky sliding menu items on homepage...
	/*jQuery('ul.clear li').mouseover(function(){
    	jQuery(this).stop().animate({backgroundPosition: "0 -123px"}, "fast");
    }).mouseout(function(){
    	jQuery(this).stop().animate({backgroundPosition: "0 0"}, "fast");
    });
	jQuery('#personalLifeCoachingBtn, #trainingAndDevelopmentBtn').mouseover(function(){
    	jQuery(this).stop().animate({backgroundPosition: "0 -146px"}, "fast");
    }).mouseout(function(){
    	jQuery(this).stop().animate({backgroundPosition: "0 0"}, "fast");
    });*/
	jQuery('#contentBox h3').before("<br /><hr /><br />");
});
