$(document).ready(function(){
$('ul.menu li a').mouseover(function () {

$(this).next('ul.sub-menu').slideToggle('fast');
$(this).parent().hover(function() {
}, function(){
	$(this).parent().find("ul.sub-menu").slideUp('medium'); //When the mouse hovers out of the subnav, move it back up
});

});
});


