$(document).ready(function() {
	$('ul.nav').superfish();
	
	if ($('div.Notification').length) {
		$('h4:not(.no-not)').after('<div class="redirect-n"><p><img src="/images/icons/error.png" alt="Reat Announcement" class="icon" /><a href="#Notification">Please read the recent product announcement</a></p></div>');
	}
	
	if ($('ul.nav li').length) {
		$('ul.nav li').each(function() {
			var kids = $(this).children('ul');
			var kid_count = kids.length;
			if (kid_count != 0) $(this).addClass('parent');
		});
	}
	
	$.localScroll();
});