$(document).ready(function(){
	// menu a tendina
	$('.level0').mouseover(function(){  
		$(this).find('.submenu').show();
		$(this).find('.parent a').addClass('over');
	});
	$('.level0').mouseout(function(){
		$(this).find('.submenu').hide();
		$(this).find('.parent a').removeClass('over');
	});
	$(".ban_hp a").click(function(){
		return false;
	})
	$(".ban_hp").click(function(){
		window.location = $(this).find('a:first').attr('href');
	}).mouseover(function(){
		$(this).find('a').addClass('over');
	}).mouseout(function(){
		$(this).find('a').removeClass('over');
	});
});
