$(document).ready(function() {
	$('.hider').hide();
	$('.style_menu a').click(function() {
		var active_id = $(this).attr('href');
		$(active_id).show().siblings().hide();
		$(this).parent().addClass('selected').siblings().removeClass('selected');
		return false;
	});

	$('.action_menu a').click(function() {
		var active_id = $(this).attr('href');
		$(active_id).show().siblings().hide();
		return false;
	});
});