﻿$(document).ready(function() {
    $("#btncrearvocuher").bind("click", function(e) {
        e.preventDefault();
        $("#divmenuvoucher").hide();
        $("#divcrearvoucher").show();
        $("#col-one").hide();
        $("#divconsultaVoucher").hide();
    });

    $("#btnconsultavoucher").bind("click", function(e) {
        e.preventDefault();
        $("#divmenuvoucher").hide();
        $("#divcrearvoucher").hide();
        $("#divconsultaVoucher").show();
        $("#col-one").hide();
    });
    $('#tabvanilla > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle'} });
    $("#btnexit").bind("click", function(e) {
        Exit();
    });

});
