$(document).ready(function() {
/***** Rotating Gallery *****/
	$("#slider").nivoSlider({
		effect: 'fold',
		slices: 15,
		animSpeed: 600,
		pauseTime: 6500,
		captionOpacity: 0.8
	});
	$("[id*=slidecaption]").css("display", "none");
/***** Rollover images *****/
	$("img.rollover").hover(
		function() {
			this.src = this.src.replace("_off","_on");
		},
		function() {
			this.src = this.src.replace("_on","_off");
		});
	});

