$(document).ready(function(){


// hide all toggles
$('div.toggle, span.toggle').hide();
		
// toggles
$('a.toggle').toggle(function(){
	var toggle = $(this).parent().next('div.toggle, span.toggle');
	toggle.fadeIn();
}, function(){
	$(this).parent().next().fadeOut();
});

// show/hide all toggles
$('a.toggle_all').toggle(function(){
	var toggle = $('div.toggle, span.toggle');
	toggle.fadeIn();
}, function(){
	$('div.toggle, span.toggle').fadeOut();
});

// slideshows
$('#slider').nivoSlider({
	effect:'slideInLeft', //Specify sets like: 'fold,fade,sliceDown'
	slices:15,
	animSpeed:300, //Slide transition speed
	pauseTime:7500,
	startSlide:0, //Set starting Slide (0 index)
	directionNav:true, //Next & Prev
	directionNavHide:false, //Only show on hover
	controlNav:true, //1,2,3...
	controlNavThumbs:false, //Use thumbnails for Control Nav
	keyboardNav:true, //Use left & right arrows
	pauseOnHover:true, //Stop animation while hovering
	manualAdvance:false, //Force manual transitions
	captionOpacity:0.8, //Universal caption opacity
});

// hide email
$('a.email').nospam({
  replaceText: true,
  filterLevel:'low'
});
	
});
