/*
 * Funcoes javascripts
 */

$(document).ready(function() {
	$("a.group").fancybox({
		'hideOnContentClick': false
	});

});

function mostrarDetalhes(contato){
    Dialog.alert({
        url: "inset.html",
        options: {
            method: 'get'
        }
    }, {
        className: "alphacube",
        width: 540,
        okLabel: "Close"
    });
}

function esvazia(valor_campo){
	if(valor_campo.value == valor_campo.defaultValue){
		valor_campo.value = '';
	}
}

function preencher(valor_campo){
	if (valor_campo.value == ''){
		valor_campo.value = valor_campo.defaultValue;
	}
}

