$(document).ready(function(){
		/*					   
		$(".box_garota_img").mouseover(function(){
		$(this).next(".box_garota_desc").slideDown("fast")
        //  $(".box_garota_desc").show("slow");
      	 });
				$(".box_garota_img").mouseout(function(){
		$(this).next(".box_garota_desc").slideUp("fast")
        //  $(".box_garota_desc").show("slow");
      	 });
				*/
				$("#assinatura1").mouseover(function(){
		$(this).fadeOut("slow")
		$("#assinatura2").fadeIn("slow")
        //  $(".box_garota_desc").show("slow");
      	 });
				$("#assinatura2").mouseout(function(){
		$(this).fadeOut("slow")
		$("#assinatura1").fadeIn("slow")
        //  $(".box_garota_desc").show("slow");
      	 });
						
 });