$(document).ready( function(){

    $('input[type=text].pesquisa').corner('tl bl 3px');

    $('#link-empresa').click( function(event){
        event.preventDefault();
        if($(this).parent().find('.submenu').is(':visible')){
            $(this).parent().removeClass('aberto');
            $(this).animate({color:'#108265'}, 350, function(){
                $(this).removeClass('ms7').addClass('ms1');
            });
            $(this).parent().animate({marginTop:'+=65px', height:'15px', backgroundColor:'#FFF'}, 700);
            $(this).parent().find('.submenu').fadeOut('slow');
        }else{
            $(this).parent().addClass('aberto');
            $(this).animate({color:'#FFF'}, 350, function(){
                $(this).removeClass('ms1').addClass('ms7');
            });
            $(this).parent().animate({marginTop:'-=65px', height:'80px', backgroundColor:'#8DC541'}, 700);
            $(this).parent().find('.submenu').fadeIn('slow');
        }
    });

    $('a.grupo1').hover( function(){
        $(this).parent().find('.faixa-grupo1').stop().show();
    }, function(){
        if($(this).attr('href') != window.location)
            $(this).parent().find('.faixa-grupo1').stop().hide();
    });
    $('a.grupo2').hover( function(){
        $(this).parent().find('.faixa-grupo2').stop().show();
    }, function(){
        if($(this).attr('href') != window.location)
            $(this).parent().find('.faixa-grupo2').stop().hide();
    });
    $('a.grupo3').hover( function(){
        $(this).parent().find('.faixa-grupo3').stop().show();
    }, function(){
        if($(this).attr('href') != window.location)
            $(this).parent().find('.faixa-grupo3').stop().hide();
    });
    $('a.grupo4').hover( function(){
        $(this).parent().find('.faixa-grupo4').stop().show();
    }, function(){
        if($(this).attr('href') != window.location)
            $(this).parent().find('.faixa-grupo4').stop().hide();
    });
    $('a.grupo5').hover( function(){
        $(this).parent().find('.faixa-grupo5').stop().show();
    }, function(){
        if($(this).attr('href') != window.location)
            $(this).parent().find('.faixa-grupo5').stop().hide();
    });

    $('a.fancy').fancybox();

    $('input[type=submit]').corner('5px');

});
