$(function(){
		var url = document.location.pathname + document.location.search;
		$('#menus a').each(function() {
			var o = $(this);
			if (o.attr('href') == url) {
				o.parent().attr('id', 'current');
				return;
			}							
		});
		
		
		$('#current').find('ul:first').show();
		$('#current').parents('ul').show();
})
