$(document).ready(function() {

/* Navigation
*************************************************************/		

	$('#nav').accordion({
	header: '.toggle',
	active: '.open',
	selectedClass: 'current',
	alwaysOpen: false,
	collapsible: true,
	autoHeight: false
	});
	
	
	$(function() {
		$('#slideshow img:first').fadeIn(300, function() {
    		$("#slideshow").cycle({
			fx: "fade",
			timeout: 4000,
			speed: 750,
			next: "#nxt", 
    		prev: "#pre",
			pause: true,
			after:  _set_total_pics
			});
		});
  	});
	
	function _set_total_pics(curr,next,opts) {
	$('#pages').text((opts.currSlide+1)+' / '+opts.slideCount);
	}

	
	$('#top').click(function(){//$.scrollTo works EXACTLY the same way, but scrolls the whole screen
		$.scrollTo( this.hash,500);
		return false;
	});
	
	
	$('.flashClients').flashembed({
		src: 'http://nochintz.co.uk/assets/images/swf/ncclients.swf',
		wmode: 'transparent',
		allowscriptaccess: 'always',
		allowfullscreen: false
	});

	$('.flashMap').flashembed({
		src: 'http://nochintz.co.uk/assets/images/swf/ncmap.swf',
		wmode: 'transparent',
		allowscriptaccess: 'always',
		allowfullscreen: false
	});
  
});
