/* Dom Ready */
$(document).ready(function() {

    $("#navFot li").click(function() {
            var photo = $(this).text();
            var convert = (parseInt(photo)<10) ? '0'+photo : photo;
            $('#pagePhoto')[0].src = '/i/foto_destaque_concurso_'+jQuery.trim(convert)+'.jpg';
            $("#navFot li").removeClass('active');
            $(this).addClass('active'); 
        }
    );
    
    
    var equalize = ($.browser.msie && $.browser.version > 6 ) ? $('#contestChamp').height()+10 : $('#contestChamp').height();
    $('#contestList').height(equalize);

});
    

