$(document).ready(function(){
    $("a.fancy").fancybox();
	$('li.subcategoria').hover(
        function() { $('ul', this).fadeIn("slow"); },
        function() { $('ul', this).hide(); });

});
