// JavaScript Document
$(function() {
	$('.tab_content:not(:first)').hide();
	$('.tab_content:first').show(); //IEだけ表示されない。。
	//タブをクリック
	$('ul.tabs li').click(function() {
		$(this).find('img').attr('src',$(this).find('img').attr('src').replace('_default', '_active'));
		if($(this).attr('class')!='active'){
			$('li.active img').attr('src',$('li.active a > img').attr('src').replace('_active', '_default'));
		}
		$('ul.tabs li').removeAttr('class');
		$(this).addClass('active');

		$('.tab_content').hide();
		var activeTab = $(this).children('a').attr('href'); 
		$(activeTab).fadeIn(); 
		return false;
		
	});
});
