$(document).ready(function() {  
    jQuery(function(){
		jQuery('ul.menu').superfish({
			delay		: 500,
			animation	: {opacity:'show',height:'show'},
			speed		: 'fast',
			autoArrows	: false,
			dropShadows : false					   	
		});
	});

	// Adds 'active' class to current page link in nav
	var page = window.location.pathname;
	page = page.substring(0, page.lastIndexOf('/'));
	if (page == "") {
		page = window.location.pathname;
	}

	// Removes "/" from beginning of page variable
	if (page != "/") {
		page = page.substr(1);
	}

	if (jQuery('nav a[href="' + page + '"]') != null) {
		jQuery('nav a[href="' + page + '"]').parents("nav ul li").last().addClass("active");
	}
});
