$(document).ready(function() {
									
					$('.butnav').css('cursor', 'pointer');
					$('#video-thumbs li').css('opacity', '0.25');
					$('.darken').css('opacity', '1.0');
					$('.selected').css('opacity', '1.0');
					$('.selected').hover(function() {$(this).css('opacity', '1.0');}, function() {$(this).css('opacity', '1.0');});
					$('#video-thumbs li').hover(function() {$(this).addClass('darken').css('opacity', '1.0');}, function() {$(this).removeClass('darken').css('opacity', '0.25');});
					$('#video-thumbs li').click(function() {$(this).addClass('selected');}, function() {$(this).removeClass('selected');});
					$("#podcast-listing").imageScroller({
						next:"Next",
						prev:"Prev",
						frame:"video-thumbs",
						width:60,
						height:40,
						child:"li",
						auto:false
					});

});
