

$(document).ready(function() {
  
	$('li.hassub').each(function() {
		var find07 = false;
		var spanText = this.getElementsByTagName('span').item(0).firstChild.data;
		//var spanText = $(this).children('span').get(0).text();
		if (spanText == '07') {
			$(this).hover(function() {
				$('#overmenu').hide();
			},
			function() {
				$('#overmenu').show();
			});
		}
  	});
});