jQuery(document).ready(function($) {
	$(".sf-menu").superfish({
		delay:			333,
		animation:		{opacity:"show"},
		speed:			"fast",
		autoArrows:		false,
		dropShadows:	false,
		disableHI:		true
	});	
		
	$('.sf-menu .dd-top').append($('<span/>').addClass('dd-arrow'));

	$('.sf-menu > li').each(function() {
		var tabWidth = $(this).width(),
			arrowMove = Math.round( ( tabWidth - 14 ) / 2 );
		$('.dd-arrow', this).css('marginLeft', arrowMove+'px');
	});
	$('.sf-menu > li > a.no-click').click(function(e) {
		e.preventDefault();
	});
	$('.sf-menu > li > div.ul').hover(function() { 
		$(this).addClass('ul-hover');	
	}, function() {
		$(this).removeClass('ul-hover');
	});
	
	
});
