﻿//$(document).ready(function() {
//    $('.abasOpcoes a').click(function(){
//        $('.abasOpcoes a').removeClass('icAtivo');
//        $(this).addClass('icAtivo');
//    });
//});
$(document).ready(function() {
    $('.ctrl:not(:last)').hide();
    $('.abasOpcoes a').hover(function() {
        $('.icPadrao').hide();
        $(this).addClass('icAtivo');
        $($(this).attr("rel")).show();
    }, function() {
        $(this).removeClass('icAtivo');
        $($(this).attr("rel")).hide();
        $('.icPadrao').show();
    });
});

