$(document).ready(function(){
	$("#products-nav li").hover(
		function(e){ 
		  var offset = $(this).offset();
		  $("ul", this).css("top", offset.top);
		  $('ul',this).show();
		}, 
		function() { 
		  //$("ul", this).fadeOut(200); 
		  $('ul',this).hide();
		}   
	);
});