﻿$(document).ready(function () {
	$('.wr-page .ct-topo .menu li a.mn-produtos').hover(function(){
		$(this).next().show();
	});
	$('.wr-page .ct-topo .menu li ul').mouseleave(function(){
		$(this).hide();
	});
});
