
/* --------------------------------
	画像クリック変更
-------------------------------- */

$(function() {
	clickChange.write();
});


var clickChange = {
	write: function() {
		
		//マウスダウン時
		$('#trivia li img').mousedown(function() {
			var down = this.src;
			down = down.replace('_ov','_on');
			$(this).attr('src',down);
		});
		
		//マウスアップ時
		$('#trivia li img').mouseup(function() {
			var up = this.src;
			up = up.replace('_on','_results');
			$(this).attr('src',up);
			$(this).unbind('mouseout').unbind('mouseover');
			$(this).css('cursor','default');
		});
		
		
	}
}




