$(function() {

	// text popups
	$('li').hover(function() {
		$(this).children('div')
			.stop().fadeIn(500);
	}, function() {
		$(this).children('div')
			.fadeOut(250);
	}); // end of 'text popups'
	

	// change link color based on page
	var curURL = window.location.pathname;
	
	if( curURL === '/about/' ) {
		$('.about').css('color', 'grey');
	}

	if( curURL === '/portfolio/' ) {
		$('.folio').css('color', 'grey');
	}

	if( curURL === '/contact/' ) {
		$('.contact').css('color', 'grey');
	}

});

