$(document).ready(function() {

/*////////////////NAV///////////////////*/
/*//////////////////////////////////////*/

/*////////////////BOTON LOGO Y CLASE "BOTON"///////////////////*/
$('#logo , .boton').each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: 0.6 }, "fast");
            },
           function() {
               $(this).stop().animate({ opacity: 1.0 }, "slow");
           });
});
		
/*////////////////BOTON LOGIN Y REGISTRATE///////////////////*/
$('#b_login , #b_registrate').each(function() {
            $(this).hover(function() {
                $(this).stop().animate({paddingTop:"8px" , opacity:0.8  }, "fast");
            },
           function() {
               $(this).stop().animate({ paddingTop:"3px" , opacity:1 }, "fast");
           });
});

/*////////////////BOTON ANUNCIA TU CASA GRATIS///////////////////*/
$('#b_anuncia img').each(function() {
            $(this).hover(function() {
                $(this).stop().animate({height:"50px" , width:"195px" , marginTop:"-5px" , opacity:0.9 }, "fast");
            },
           function() {
               $(this).stop().animate({ height:"47px" , width:"192px" , marginTop:"0px" , opacity:1 }, "fast");
           });
});
		
		
/*////////////////NAV BOTONES///////////////////*/
$('#nav li').each(function() {
            $(this).hover(function() {
                $(this).css({display: "none", color: "#ff9900"}).fadeIn("fast");
            },
           function() {
               $(this).css({display: "inline", color: "#fff"}).fadeIn("slow");
           });
});
		
	
	
});
