$(document).ready(function(){ 
	$("#nav-main ul").superfish({
		delay:       1000,
		animation:   {opacity:'show',height:'show'},
		speed:       'fast',
		autoArrows:  false,
		dropShadows: false
	});
		
	jQuery('#nav-social a').hover(function() {
		jQuery(this).animate({opacity: .75}, "slow");
		}, function() {
		jQuery(this).animate({opacity: 1}, "slow");
	});
	jQuery('#nav-share a').hover(function() {
		jQuery(this).animate({opacity: .75}, "slow");
		}, function() {
		jQuery(this).animate({opacity: 1}, "slow");
	});
}); 

