$(document).ready(function(){
$('.nav li:not(".current")').hover(
		function() {$(this).children('ul').show();},
		function() {$(this).children('ul').hide();}
		);
  });