$(document).ready(function(){
	$('.jsc_noteblock').mouseenter(function(){
		$('.nota',this).stop().fadeOut(aniDuration/10);
		$('.block',this).css({backgroundImage:'url('+$('.jsc_note_bg',this).attr('src')+')',backgroundPosition: '50% -64px'});
		$('.in',this).css({backgroundImage:'url('+$('.jsc_note_fg',this).attr('src')+')',backgroundPosition: '50% -64px'});//
		$('.jsc_bgscroll').stop();
		animate_bg($('.jsc_bgscroll',this));
	}).mouseleave(function(){
		$('.block',this).css({backgroundImage:'none'});
		$('.in',this).css({backgroundImage:'none'});
		$('.nota',this).stop();
		$('.jsc_bgscroll').stop();
		$('.nota',this).fadeTo(aniDuration/10,1);
	})/*.click(function(){

		//console.debug($('.jsc_linktogo',this));
		//$('.jsc_linktogo',this).click();
		//$('.nota',this).show();
		//$('.jsc_linktogo',this).click();
		//$('.nota',this).hide();


	})*/;
});
