$(document).ready(function() {
	$(".fundos ul").hide()
	
	$(".fundos, .fundos ul").hover(
	  function () {
		$('.fundos').addClass('selected');
		$(".fundos ul").fadeIn("fast");
	  }, 
	  function () {
		$(".fundos ul").fadeOut("fast");
		$('.fundos').removeClass('selected');
	  }
	);
});
