
function email(addy, text) {
	if(text.length == 0) {
		document.write('<a href="mailto:' + addy + '@lithegiant.com">' + addy + '@lithegiant.com</a>');
	} else {
		document.write('<a href="mailto:' + addy + '@lithegiant.com">' + text + '</a>');
	}
}

$(document).ready(function() {

$(".email").each(function(o) {
$(this).click(function() {
if($(this).attr("href").indexOf("@") < 0) {
$(this).attr("href", "mailto:" + $(this).attr("href") + "@counttoq.com");
}
});
});


	$("#menu a, h2 a, a.scroll").each(function(l) {
		$(this).click(function() {
			$.scrollTo($(this).attr("href"), 800);
			return false;
		});
	});
});
			
