$(document).ready(function() {
	// SITE NAVIGATION ----------------------------------------------------
	$("ul.navigation li a").each(function() {
		var href = $(this).attr("href");
		$(this).click(function() {
			$.scrollTo(href, 500, {easing: 'linear'});
			return false;
		});
	});
	$("div.subNav a").each(function() {
		var href = $(this).attr("href");
		$(this).click(function() {
			$.scrollTo(href, 500, {easing: 'linear'});
			return false;
		});
	});

	// IMAGE NAVIGATION ---------------------------------------------------
	$(".slideshow").each(function() {
		var _nav = $(this).children("div.ss_navigation:eq(0)");
		var _prev = _nav.children("a.ss_prev:eq(0)");
		var _next = _nav.children("a.ss_next:eq(0)");
		var _images = $(this).children("div.ss_images:eq(0)");
		_images.serialScroll({
			items: 'li',
			prev: _prev,
			next: _next,
			//offset: -230,
			start: 0,
			duration: 200,
			force: true,
			stop: false,
			lock: false,
			cycle: true,
			jump: true
		});
		_images.mouseover(function() {
			_nav.css("visibility", "visible");
		});
		_nav.mouseover(function() {
			_nav.css("visibility", "visible");
		});
		_images.mouseout(function() {
			_nav.css("visibility", "hidden");
		});
	});

	// IMAGE LOADING ------------------------------------------------------
});	
