$(document).ready(function() { 
	$('ul#primaryNav').superfish({ 
		animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
		speed:       'fast',                          // faster animation speed 
		autoArrows:  false,                           // disable generation of arrow mark-up 
		dropShadows: false                            // disable drop shadows 
	});
	// Highlight current page
	$page = jQuery.url.attr("file");
	if(!$page) {
		$page = 'index.html';
	}
	$('ul#snav li a').each(function(){
		var $href = $(this).attr('href');
		if ( ($href == $page) || ($href == '') ) {
			$(this).addClass('highlight');
		} else {
			$(this).removeClass('highlight');
		}
	});
}); 

