
$(document).ready(function() {


    $('.conf-este').click(function() {
	$('.conf-este').css("backgroundColor", "#f68003");
	$('.conf-oeste').css("backgroundColor", "#000");
    $('#conf-este').slideDown("slow");
    $('#conf-oeste').slideUp("slow");
    });

    $('.conf-oeste').click(function() {
    $('#conf-este').slideUp("slow");
    $('#conf-oeste').slideDown("slow");
	$('.conf-este').css("backgroundColor", "#000");
	$('.conf-oeste').css("backgroundColor", "#f68003");
    });

    $('#close-este img').click(function() {
    $('#conf-este').slideUp("slow");
	$('.conf-este').css("backgroundColor", "#000");
    });
    $('#close-oeste img').click(function() {
    $('#conf-oeste').slideUp("slow");
	$('.conf-oeste').css("backgroundColor", "#000");
    });



    $('.div-conf div').mouseenter(function() {
        $(this).css("color", "#ffffff");
        $(this).css("backgroundColor", "#000");
        $(this).css("backgroundImage", "url(/images/teamArrow.jpg)");

    });

    $('.div-conf div').mouseleave(function() {
        $(this).css("color", "#000");
        $(this).css("backgroundColor", "#fff");
        $(this).css("backgroundImage", "none");
    });


 $('.resultados-grid-result').mouseleave(function() {
        $(this).css("color", "#000");
        $(this).css("backgroundColor", "#fff");
       
    });

    $('.resultados-grid-result').mouseenter(function() {
        $(this).css("color", "#000");
        $(this).css("backgroundColor", "#f3f3f3");
        
    });



});
