jQuery.noConflict()(function($){
        
    // initialize scrollable  
    $("div#worksboxscrollable").scrollable({
		size: 2,
		interval: 0,
		loop: false, 
		clickable: false,
		speed: 1000,
		onBeforeSeek: function() { 
            this.getItems().fadeTo(500, 0.5);         
        }, 
         
        // when seek ends resume items to full transparency 
        onSeek: function() { 
            this.getItems().fadeTo(500, 1); 
        }
});     
     
}); 

function accesslog(CounterName){
	var ImageWidth  =  1;
	var ImageHeight =  1;
	var ScriptUrl   = '/f-nagoya/cgi-bin/vwaccesslog/log4.cgi';

	var Tag = '<img' +
				' src="'   + ScriptUrl   + '?' + CounterName + '@' + document.referrer + '"' +
				' width="'  + ImageWidth  +
				'" height="' + ImageHeight +
	          '" />';

	document.write(Tag);
}
