/* Author: Create Interactive/Dru Kelly */

// nav dropdown
$('nav li').hover(function(){
	$(this).addClass('active');
},function(){
	$(this).removeClass('active');
});
// sticky/waypoint footer combo
$('#container').waypoint(function(event, direction) {
	$('#container').toggleClass('sticky', direction == "down");
}, {
	offset: function() {
		return $.waypoints('viewportHeight') - ($(this).height() - ($('#content-after').height() - ($('footer').height() - 18)));
	}
});
