/* miscs */

$(document).ready(function(){

   $("a[rel=blank]").attr('target','_blank');

   $("header nav li a").textShadow({
	  x:      0, 
	  y:      -8, 
	  radius: 3,
	  color:  "#000"
	});

/*
  $("header nav li").hover(
	function () {
	  $(this).find('a').addClass('active');	
	  $(this).find('ul').stop("true","true").slideDown(200);
	}, 
	function () {
      $(this).find('a').removeClass('active');		
	  $(this).find('ul').slideUp(200);
	}
  );
*/
/*   
   $(".menuRed a").fadeTo(0, 0.5);
   $(".ativo").fadeTo(0, 1.0);
   
   $(".menuRed a").hover(
	  function () {
		$(this).fadeTo(200, 1.0);
	  }, 
	  
	  function () {
		$(this).fadeTo(200, 0.5);
	  });
*/

});

/* */
