jQuery(function() {
jQuery('.sub-cat').hide();
jQuery('.main-cat').hover(
function(){
jQuery(this).find('.sub-cat').show(300);
},
function(){
jQuery(this).find('.sub-cat').hide();
}
);
}