strUA = navigator.userAgent.toLowerCase();

$(function(){
$(".imgover").hover(
function(){$(this).fadeTo(100,'0.6')},
function(){$(this).fadeTo(150,'1')}
);
});


<!-- animate -->
$(function() {
$('a[href*=#pagetop]').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length && target;
if (target.length) {
var sclpos = 0;
var scldurat = 1200;
var targetOffset = target.offset().top - sclpos;
$('html,body')
.animate({scrollTop: 0}, {duration: scldurat, easing: "easeOutCubic"});
return false;
}
}
});
});
<!-- /animate -->

/*if(strUA.indexOf("opera")==-1){
<!-- scrollFollow -->
$( document ).ready( function ()
{
$( '#sideColumn' ).scrollFollow(
{
speed:700,
offset: 10,
delay:300,
container: 'mainContent',
killSwitch: 'killSwitch',
onText: 'スクロールOFF',
offText: 'スクロールON'
}
);
}
);
<!-- /scrollFollow -->
} // endIf*/


/*var theInt = null;
		var $crosslink, $navthumb;
		var curclicked = 0;
		
		theInterval = function(cur){
			clearInterval(theInt);
			
			if( typeof cur != 'undefined' )
				curclicked = cur;
			
			$crosslink.removeClass("active-thumb");
			$navthumb.eq(curclicked).parent().addClass("active-thumb");
				$(".stripNav ul li a").eq(curclicked).trigger('click');
			
			theInt = setInterval(function(){
				$crosslink.removeClass("active-thumb");
				$navthumb.eq(curclicked).parent().addClass("active-thumb");
				$(".stripNav ul li a").eq(curclicked).trigger('click');
				curclicked++;
				if( 9 == curclicked )
					curclicked = 0;
				
			}, 3000);
		};
		
		$(function(){
			
			$("#main-photo-slider").codaSlider();
			$("#slider2").codaSlider();
			
			$navthumb = $(".nav-thumb");
			$crosslink = $(".cross-link");
			
			$navthumb
			.click(function() {
				var $this = $(this);
				theInterval($this.parent().attr('href').slice(1) - 1);
				return false;
			});
			
			theInterval();
		});*/
