// JavaScript Document
function init() {
	var contact = document.getElementById("contact");
	contact.onclick = function() {
		if(confirm("contact us info@mascottheory.com"))
			return true;
	}
}
window.onload = init;