jQuery(document).ready(function(){
	jQuery('#top-nav li').mouseenter(function(){
		this._box = jQuery(this).children('ul');
		if(this._box.length > 0){
			this._box.show(200);
			jQuery(this).css('z-index', 2);
		}
	}).mouseleave(function(){
		if(this._box.length > 0){
			this._box.stop().css({
				display: 'none',
				opacity: 1,
				width: 150,
				height: 'auto'
			});
			jQuery(this).css('z-index', 1);
		}
	});
});