	$(document).ready(function() {
		$("#rotator").show();
		if ($.browser.msie) {
			$("#rotator").css('background', '#eeeeee'); //resorting to smoke and mirrors for IE
		}
		$("#prev").fadeTo(100, 0.05);
		$("#next").fadeTo(100, 0.05);
		$("#rotator").hover(
			function() { 
				$("#prev").fadeTo(400, 0.90);
				$("#next").fadeTo(400, 0.90);
			},
			function() {
				$("#prev").fadeTo(600, 0.05);
				$("#next").fadeTo(600, 0.05);
			}
		);
		$('.slideshow').cycle({
			fx: 'fade' //fade, scrollHorz, zoom, shuffle, toss etc...
			, prev:   '#prev' 
    		, next:   '#next'
			, timeout: 11000 //1000 == 1 sec
			, speed: 1000
		});
	}); 
	//svn change
