function initBoxTabs(){
	$('.box_tabs li').each(function(i) {
		$(this).hover(function() {
			id = str_replace('box_tab_','',$(this).attr('id'));
			no = id.substr(0,1);
			char = id.substr(1);
			
			$('#tabbed_box_'+id).addClass('opened');
			$('#box_tab_'+id).addClass('selected');
						
			if(char=='a'){
				$('#tabbed_box_'+no+'b').removeClass('opened');
				$('#box_tab_'+no+'b').removeClass('selected');
			}else{
				$('#tabbed_box_'+no+'a').removeClass('opened');
				$('#box_tab_'+no+'a').removeClass('selected');
			}
		});
	});
}
