/*
UPDATE : 2011.03.03
CAMPANY : 株式会社KOUS
AUTOR : GAINA k.watuu

-----------------------------------------------------------

	Index
	1.external
	2.a img fade
	3.other


-----------------------------------------------------------

 1.reset [
----------------------------------------------------------- */
// WP仕様 画像リンクにのみ新しいウィンドにしました。
jQuery(function(){
	//外部リンクにtarget="_blank"を付与
	//$("a[href^='http://']").attr("target","_blank");
  $("#header a[href^='http://'],#footer a[href^='http://'],#box_side .s_social a[href^='http://'],#box_side .s_gnavi a[href^='http://'],#box_side .s_bana a[href^='http://'],#followMe a[href^='http://']").attr("target","_blank");
	$("#box_contents a[href^='http://'] img").closest("a").attr("target","_blank");
	//擬似クラスの明示化
	$('body :first-child').addClass('firstChild');
	$('body :last-child').addClass('lastChild');
	$('ul, ol').each(function(){
		$(this).children('li:odd').addClass('even');
		$(this).children('li:even').addClass('odd');
	});
});

/*
 2.a img fade [
----------------------------------------------------------- */
jQuery(function(){
  $("#header a img,#box_side a img,#footer a,.fadeLink a img").each(function(){
		$(this).hover(
		  function(){
				$(this).fadeTo(150,0.65);
			},
			function(){
				$(this).fadeTo(150,1.0);
			});
  });
});

/*
 3.other [
----------------------------------------------------------- */

jQuery(function(){
  $(".top_bana a img").each(function(){
		$(this).fadeTo(150,0.65);
		$(this).hover(
		  function(){
				$(this).fadeTo(150,1.0);
			},
			function(){
				$(this).fadeTo(150,0.50);
			});
  });
});

jQuery(function(){
  $("#list_collection a img").each(function(){
  		$(this).fadeTo(150,0.65);
		$(this).hover(
		  function(){
				$(this).fadeTo(150,1.0);
			},
			function(){
				$(this).fadeTo(150,0.65);
			});
  });
});

$(function(){
	$("#gnavi_collection").toggle(
		function(){
			$("#gnavi_collection + ul").slideDown("100");
		},
		function(){
			$("#gnavi_collection + ul").slideUp("100");
		});
});





