$(function(){
	$('.report_h4 a').mouseover(function(){
		var id = $(this).attr('id');
		id = id.replace('t_', '');
		$('.report_h4 li').removeClass('active');
		$(this).parent('li').addClass('active');
		$('.report_list ul').hide();
		$('#tc_' + id).show();
	})
})
$(function(){
	$('.tab h3 a').mouseover(function(){
		var id = $(this).attr('id');
		id = id.replace('t2_', '');
		$('.tab h3 a').removeClass('active');
		$(this).addClass('active');
		$('.tabc').hide();
		$('#tc2_' + id).show();
	})
})
$(function(){
	$('.tab3 h3 a').mouseover(function(){
		var id = $(this).attr('id');
		id = id.replace('t4_', '');
		$('.tab3 h3 a').removeClass('active');
		$(this).addClass('active');
		$('.tabc4').hide();
		$('#tc4_' + id).show();
	})
})
$(function(){
	$('#t3_1, #t3_2').mouseover(function(){
		$('#t3_1, #t3_2').removeClass('active3');
		$(this).addClass('active3');
		var id = $(this).attr('id');
		id = id.replace('t3_', '');
		$('#tc3_1, #tc3_2').hide();
		$('#tc3_'+id).show();		
	})
})
$(function(){
	$('#l_1, #l_2').mouseover(function(){
		$('#l_1, #l_2').removeClass('active4');
		$(this).addClass('active4');
		var id = $(this).attr('id');
		id = id.replace('l_', '');
		$('#lc_1, #lc_2').hide();
		$('#lc_'+id).show();
	})
	
})