
$(function(){
    var _uls = $('.categories-wrap ul li.pnav'),
        _timer = null,
		_opened=null,
		_readytoscroll=true;
        
    _uls.find('ul:visible').hide();
	
	//_uls.hover(
	_uls.mouseover(
        function() {
			if ($(this).find('> ul').is(':visible')==false && $(this).find('> ul li').size()>0 && _readytoscroll==true)
			{
				_readytoscroll=false;
				if(_opened!=null && _opened!=this) {
					$(_opened).find('> ul').slideUp();
				}
				$(this).find('> ul').slideDown('slow', function() {
					_readytoscroll=true;
				});
				_opened=this;
			}
        });
});

