$(function() {
	$('.Switch li').click(function() {
		$('li.Switch1').attr('className', 'Switch2');
		$(this).attr('className', 'Switch1');
		var index = $('.Switch li').index(this);
		$('div.index_tab_content').each(function(i) {
			if (index == i) {
				$(this).show();
			} else {
				$(this).hide();
			}
		});
	});

	$('#col_menu_div li').hover(function() {
		$(this).children('.submenu_div').show();
	}, function() {
		$(this).children('.submenu_div').hide();
	});
	
	if ($('div.index_tab_content').length > 0) {
		$('div.index_tab_content:first').show();
	}
});

