/**
 * Hutchinson JS
 * @author Kyle Robinson Young <kyle at epiphanet.com>
 */
$(function() {
	
	/**
	 * Nav
	 */
	/*$('#nav-list > li').hoverIntent(function() {
		$('#nav-list > li').find('ul').hide();
		$(this).find('ul').show();
	}, function() {
		$('#nav-list > li').find('ul').hide();
	});*/
	
	/**
	 * Slideshow
	 */
	$('.slideshow-images').cycle({
		autostop: 1
	});
	
	/**
	 * External Links
	 */
	$("a[rel='external']").click(function() {
		this.target = "_blank";
	});

});
