$(function(){
    $('.noticia').delegate('a.saberMais', 'mouseover mouseout', function(mouse){

        e = mouse.type;
        i = $('a.saberMais').index(this);

        if (e == 'mouseover')
        {
            $(".notdescr h3 a").eq(i).css("color", "#7abf42");
            $("a.saberMais").eq(i).css("text-decoration", "underline");
        }
        else if (e == 'mouseout')
        {
            $(".notdescr h3 a").eq(i).css("color", "#686868");
            $("a.saberMais").eq(i).css("text-decoration", "none");
        }
    });

    $('.noticia').delegate('.notdescr h3 a', 'mouseover mouseout', function(mouse){
        
        e = mouse.type;
        i = $('.notdescr h3 a').index(this);

        if (e == 'mouseover')
        {
            $(".notdescr h3 a").eq(i).css("color", "#7abf42");
            $("a.saberMais").eq(i).css("text-decoration", "underline");
        }
        else if (e == 'mouseout')
        {
            $(".notdescr h3 a").eq(i).css("color", "#686868");
            $("a.saberMais").eq(i).css("text-decoration", "none");
        }
    });

    $('#submit_socio').hover(function(){
          $(this).css('background-position','bottom');
       }, function(){
          $(this).css('background-position','top');
       }
    );
     $('#submit_evento').hover(function(){
           $(this).css('background-position','bottom');
       }, function(){
           $(this).css('background-position','top');
       }
    );



});
