$(function(){

	//class="over"でロールオーバーを設定
	//img要素が含まれていたらsrc属性を_on付きのものに差し替える
	$('.over img').each(function(){
		this.originalSrc = $(this).attr('src');
		this.rolloverSrc = this.originalSrc.replace(/(\.gif|\.jpg|\.png)/, "_on$1");
	});
	$('.over').hover(function(){
		$(this).find('img').each(function(){
			$(this).attr('src',this.rolloverSrc);
		});
	},function(){
		$(this).find('img').each(function(){
			$(this).attr('src',this.originalSrc);
		});
	});

	$('.widget').jCarouselLite({
		btnNext: ".next",
		btnPrev: ".prev"
	});

});

