$(document).ready(function() {
	// Full Sized Background Images.
	$('body.home').bgStretcher({
		images: 			['/img/bkg-main1.jpg', '/img/bkg-photo1.jpg', '/img/bkg-photo3.jpg'],
		imageWidth: 		1600,
		imageHeight: 		1067,
		nextSlideDelay: 	5000,
		slideShowSpeed: 	2000
	});
	
	$('body.menu').bgStretcher({
		images: 			['/img/bkg-menu1.jpg'],
		imageWidth: 		1600,
		imageHeight: 		1067
	});
	
	$('body.who').bgStretcher({
		images: 			['/img/bkg-who1.jpg'],
		imageWidth: 		1600,
		imageHeight: 		1061
	});
	
	$('ul#menu a').bind('click', function(event) {
		event.preventDefault();
		
		var location = $($(this).attr('href'));
		if (location.length == 0) {
			return false;
		}
		
		var header = $('header');
		var height = (header.css('position') == 'fixed' ? header.height() : 0);
		var offset = parseInt(location.offset().top) - height;
		
		$('html, body').stop().animate({ scrollTop: offset }, 'slow','easeInOutExpo');	
	});
});
