/**
 * jQuery.rollover.js
 * Copyright (c) 2010 KEYTON.CO,Ltd.
 * Dual licensed under MIT and GPL.
 * Date: 2010-1-18
 * @author Hayashi Naoki
 * @version 1.0.0
 * http://www.keyton-co.jp/
 */
(function(a){a.fn.focusover=function(c){var d=new Image;c=c||"_on";var b=function(f){var e=f.lastIndexOf(".");this.on=d.src=f.substr(0,e)+c+f.substr(e);this.src=f};return this.each(function(){var f=this,e=new b(f.src);a(this).bind("mouseover",function(){f.src=e.on}).bind("mouseout",function(){f.src=e.src}).closest("a").bind("focus",function(){a(f).trigger("mouseover")}).bind("blur",function(){a(f).trigger("mouseout")})})}})(jQuery);
$(function(){
	$("img.rollover,input.rollover").focusover()
});
