	$(document).ready(function() {
		
		$('#logo').click(function() {
			document.location.href = 'http://www.storybookglenaberdeen.co.uk/';
		});
		
		$('#header').pan({fps:25, speed: 0.5, dir: 'left'});
		$('#bottom').pan({fps: 25, speed: 0.5, dir: 'left'});
		
		$('#logo')
			.sprite({fps: 15, no_of_frames: 0})
			.spRandom({top: 0, bottom: 12, left: 0, right: 30})
		});
		
		function slideSwitch() {
		    var $active = $('#slideshow IMG.active');

		    if ( $active.length == 0 ) $active = $('#slideshow IMG:last');

		    var $next =  $active.next().length ? $active.next()
		        : $('#slideshow IMG:first');

		    $active.addClass('last-active');

		    $next.css({opacity: 0.0})
		        .addClass('active')
		        .animate({opacity: 1.0}, 1000, function() {
		            $active.removeClass('active last-active');
		        });
		}

		$(function() {
		    setInterval( "slideSwitch()", 5500 );
		});
