/*
UPDATE : 2011.03.03

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

	Index
	1.external
	2.a img fade
	3.IE6 png
	4.other


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

 1.reset [
----------------------------------------------------------- */
jQuery(function(){
	//外部リンクにtarget="_blank"を付与
	$("a[href^='http://']").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.hover img [
----------------------------------------------------------- */
$(function(){
  $("a img:not([src$='.png'])").hover(function(){
				$(this).animate({opacity: 0.65},150);
			},
			function(){
				$(this).animate({opacity: 1},150);
			});
});

/*
 3.IE png [

/*
 4.other [
----------------------------------------------------------- */



