/**
menu fun
*/
function kat_menu(type,get_id){
	if(type=='on'){
		document.getElementById(get_id).className='header_menu_class_3';
	}else{
		document.getElementById(get_id).className='common_hide';
	}
}
function kati_menu(){
	$('#header_class_3').find('li').hover(
	  function () {
		$(this).attr('className','header_menu_class_3_hover')
	  },
	  function () {
		$(this).attr('className','')
	  }
	); 
}
/**
header style
*/
function header_style(){
	$('#header_menu').find('div').hover(
	  function () {
		$(this).attr('className','common_front global_ga header_menu_ header_menu_s')
	  },
	  function () {
		$(this).attr('className','common_front header_menu_')
	  }
	); 
}

