$(document).ready(function() {
	$('input#keywords').focus(function(){
		$(this).val('');
	});	
	$('.nav_sub li ul').hide();
	$('li.here').parent('ul').show();
	$('li.here').children('ul').show();
	$('li.parent_here ul').show();
});

