$(document).ready(function(){
	$('div.menu_top').click(function(){
		var a_obj =$(this).children('a.menu');
		var str = $(a_obj).attr('class');
//		alert(str);
//		alert (str.indexOf('no_href'));
		var result = str.indexOf('no_href') + 1;
		if (str.indexOf('no_href') == -1) {
			document.location = $(a_obj).attr('href');	
		}
	});
	$('div.menu_top').mouseover(function(){
		$(this).find('div.layer_submenu').css('display', 'block');
	});
	$('div.menu_top').mouseout(function(){
		$(this).find('div.layer_submenu ').css('display', 'none');
	});
});
