$(document).ready(function(){
	$('.level0').mouseover(function(){
		$(this).find('.submenu').show();
		$(this).find('.parent a').addClass('over');
	}).mouseout(function(){
		$(this).find('.submenu').hide();
		$(this).find('.parent a').removeClass('over');
	});
});
