$(function() {
	$('#nav').superfish({
		autoArrows: false,
		delay: 1000
	});
	
	$('p:visible', $('#accordion')).hide();
	$('#accordion h4').bind('click', function() {
		if (!$(this).next('p').is(':visible')) {
			$('p:visible', $('#accordion')).slideUp();
			$(this).next('p').slideDown();
		}
	});
	
	
	$('.toggler').bind('click', function() {
		$('.openToggle').slideUp();
		$('.openToggle').removeClass('openToggle');
		if (!$(this).next('p').is(':visible')) {
			$(this).next('p').slideDown().addClass('openToggle');
		}
	});
	
	$('.external[title]').qtip({
        position: {
			corner: {
				target: 'topRight',
				tooltip: 'bottomLeft'
			}
		},
   		style: {
			background: '#FFCC01',
			color: '#31312F',
			width: 150,
			padding: 10,
			fontSize: '11px',
			border: {
				color: '#FFCC01'
			},
			tip: true
		},
		show: {
			delay: 0,
			effect: {
				length: 0
			}
		}
	});
	
	$('#nav li a').each(function(k,v) {
		$(v).wrapInner("<nobr></nobr>");
	});
});