$(document).ready(function() {
    
	// Global navbar effects
	$('ul#nav').superfish({
		pathClass: 'active',
		speed:         'normal',
		autoArrows:    false,
		dropShadows:   false
	});
	
	// Home page feature crossfade
	if($('#feature').length){
		$('#feature').cycle({
			fx: 'fade',
			speed: 2000,
			timeout: 7000,
			pause: 1
		});
	}
	
	// Open external links in new window
	$(document).ready(function() {
		$("a[@href^=http]").each(function() {
			if(this.href.indexOf(location.hostname.replace(/www./gi, "")) == -1) {
				$(this).click(function() { window.open(this.href, "_blank"); return false; });
			}
		})
	});
	
});