$(document).ready(function() {
						   
//slider
$(window).load(function() {
		$('#slider').nivoSlider({
			effect:'fade', //Specify sets like: 'fold,fade,sliceDown'
			directionNav:false,
			controlNav:true,
			keyboardNav:false,
			pauseOnHover:false,
			pauseTime:6000,

		
	});
});

//jump points for staff pages
$('a[href*=#katherine], a[href*=#kate], a[href*=#laura], a[href*=#laney], a[href*=#herb], a[href*=#carrie], a[href*=#susan], a[href*=#mark]').click(function() {
if (location.pathname.replace(/^\//,") == this.pathname.replace(/^\//,")
&& location.hostname == this.hostname) {
var $target = $(this.hash);
$target = $target.length && $target
|| $('[name=' + this.hash.slice(1) +']');
if ($target.length) {
var targetOffset = $target.offset().top;
$('html,body')
.animate({scrollTop: targetOffset}, 1000);
return false;
}
}
});

//scroll to top
$('a.totop').click(function(){
     $('html, body').animate({scrollTop: '0'}, 'slow');
     return false;
});
	


});
