// マウスオーバー時のサムネイルフェードイン
$.fn.imageBorder = function(){
	return this.each(function(){
		$(this).addClass("jqImageBorder");
		$(this).hover(
			function(){
				$(this).fadeTo(200,0.70);
				$(this).toggleClass("jqIBRotate");
			},
			function(){
				$(this).fadeTo(200,1.0);
				$(this).toggleClass("jqIBRotate");
			}
		);
	});
}


$(function(){
	$("#nav-lineup, #nav-logo, #brandsite, #plus-one, #item-lineup li img").imageBorder();
});

