/*
 * jQuery Roll-over Plug-in
 * http://www.2next.co.jp/
 *
 * Copyright (c) 2009 2NEXT Co., Ltd.
 *
 * Date: 2009-12-11
 * Version: 1.0.0
 */

$(function(){$('img:not(.no_rollover),input:image:not(.no_rollover)').each(function(){var src=$(this).attr('src');if(src.match(/_off\./)){$(this).mouseover(function(){$(this).attr('src',src.replace(/_off\./,'_on.'));});$(this).mouseout(function(){$(this).attr('src',src);});}});});
