$(document).ready(function() {
	$('#nav span').css('opacity','0');
	$('.home #navHome span').addClass('current');
	$('.services #navServices span').addClass('current');
	$('.ourwork #navOurWork span').addClass('current');
	$('.aboutus #navAboutUs span').addClass('current');
	$('.contactus #navContactUs span').addClass('current');
	
	$("#nav span:not(.current)").hover(function () {
	// animate opacity to full
		$(this).stop().animate({
			opacity: 1
		}, "slow");
	},
	// on mouse out
	function () {
	// animate opacity to nill
		$(this).stop().animate({
			opacity: 0
		}, "slow");
	});
});