
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() {

	$(".site").each(function(l) {
		$(this).mouseover(function() {
			$(this).toggleClass("active");
			$(this).find("img").attr("src", $(this).find("img").attr("src").replace(".jpg", "-a.jpg"));
		});
		$(this).mouseout(function() {
			$(this).toggleClass("active");
			$(this).find("img").attr("src", $(this).find("img").attr("src").replace("-a.jpg", ".jpg"));
		});
		$(this).click(function() {
			location.href = $(this).find("a").attr("href");
		});
	});
});
