/*
 * 2009.07.23 サイバージュリア 濱田作成
 *		チップメッセージ用js
 */

$(function(){
	$('.category > h2').hide();

	$('#nav a').click(function(){
		var contentName = $(this).attr('href').split('#')[1];
		$('.category').hide();
		$('#'+contentName).show();
		$('#nav').removeClass().addClass(contentName);
		return false;
	});
	$('#navCompany a').trigger("click")

});

