﻿/* 写真風画像枠表示プラグイン for jQuery 2009.1 By KaZuhiro FuRuhata  */

$.fn.imageBorder = function(){
	return this.each(function(){
		$(this).addClass("jqImageBorder");
		$(this).hover(
			function(){
				$(this).fadeTo(150,0.4);
				$(this).fadeTo(150,0);				
				$(this).toggleClass("jqIBRotate");
			},
			function(){
				$(this).fadeTo(150,1.0);
				$(this).toggleClass("jqIBRotate");
			}
		);
	});
}

