var textMoveID;
$(document).ready(function(){
	$('#Nav li a').hover(	
		function(){
			//console.info($(this).find('img').attr('src'));
			$(this).find('img').attr('src', $(this).find('img').attr('src').replace('images/', 'images/i'));
		}, 
		function(){
			$(this).find('img').attr('src', $(this).find('img').attr('src').replace('images/i', 'images/'));
		}
	);
	$('.Btn_Up').hover(
		function(){
			textMoveID = setInterval(textUp, 20);
		},
		function(){
			clearInterval(textMoveID);
		}
	);
	$('.Btn_Down').hover(
		function(){
			textMoveID = setInterval(textDown, 20);
		},
		function(){
			clearInterval(textMoveID);
		}
	);
	if($.fn.jCarouselLite)
	{
		$('.Pro_Container').jCarouselLite({
			btnNext: '.LeftBtn',
			btnPrev: '.RightBtn',
			visible: 5
		});
	}
})

function textUp(){
	$('.info').get(0).scrollTop++;
}
function textDown(){
	$('.info').get(0).scrollTop--;
}