// NAC Site: js for index.html
// (c) 2011 Lobster Computing
// www.lobstercomputing.com
$(function() {
	//set up image parameters
	$.fn.supersized.options = {  
		startwidth: 1024,  
		startheight: 768,
		vertical_center: 1,
		slideshow: 1,
		navigation: 0,
		thumbnail_navigation: 0,
		transition: 1,
		pause_hover: 0,
		slide_counter: 0,
		slide_captions: 0,
		slide_interval: 6000,
		slides : [
			{image : 'images/hero/hero4.jpg', title : 'Tear It Up!'},
			{image : 'images/hero/hero8.jpg', title : 'Round The Bend'},
			{image : 'images/hero/hero6.jpg', title : 'Double Up'},
			{image : 'images/hero/hero7.jpg', title : 'Open Space'},
			{image : 'images/hero/hero1.jpg', title : 'Cresting The Hill'}
		]
	};
	//initialize content
	$('#supersized').supersized(); 
});

