// A função abaixo insere o ícone na barra de endereços //
$(document).ready(function(){
	var icon = {rel: "stylesheet", type: "text/css", href: "/imagens/favicon.png"}
	$("head").append("<link rel='"+icon.rel+"' type='"+icon.type+"' href='"+icon.href+"'>");
})

// Eventos //
/* function oncontextmenu() {
	return false;
} */
function oncopy() {
	return false;
}
