$(window).load(function() {
    $('#banner .slider').nivoSlider({
			effect:"random",
			pauseTime:8000,
			pauseOnHover:true,
			controlNav:false,
			controlNavThumbs:false,
			directionNav:false,
			keyboardNav:false,
			captionOpacity:1,
			beforeChange: function() {
				start_slide = jQuery('#banner .slider').data('nivo:vars').currentSlide;
			},
			afterChange: function() {
				new_slide = jQuery('#banner .slider').data('nivo:vars').currentSlide;
				$('#nivobannerlink'+start_slide).removeClass('focus');
				$('#nivobannerlink'+new_slide).addClass('focus');
			}
		});
    $('#testimonials .slider').nivoSlider({
			effect:"random",
			pauseTime:8000,
			pauseOnHover:true,
			controlNav:false,
			controlNavThumbs:false,
			directionNav:false,
			keyboardNav:false,
			captionOpacity:1
		});
		$("[title].tip").tooltip({
		   // tweak the position
		   offset: [10, 2],
		   // use the "slide" effect
		   effect: 'slide'
		// add dynamic plugin with optional configuration for bottom edge
		}).dynamic({ bottom: { direction: 'down', bounce: true } })
});
