// JavaScript Document

$(document).ready(function() {

	//Set the anchor link opacity to 0 and begin hover function
	$("ul#servicesList li a").css({"opacity" : 0}).hover(function(){ 

		//Fade to an opacity of 1 at a speed of 200ms
		$(this).stop().animate({"opacity" : 1}, 500); 

		//On mouse-off
		}, function(){

		//Fade to an opacity of 0 at a speed of 100ms
		$(this).stop().animate({"opacity" : 0}, 500); 

	});

});
