$(document).ready(function() {

	$('.top-level').has('ul').each(function() {		
		$(this).find('a:first').addClass('has-active-children').attr('href', '#');	  
	});			
	
	$('.has-active-children').click(function(e){
		e.preventDefault();
	});		
});

