function decode() {
	var a = document.getElementsByTagName("a");
	for (var i = a.length-1; i >= 0; i--) {
		if (a[i].className.search(/\bemail\b/) != -1) {
			var email = a[i].firstChild.data + "@" + a[i].lastChild.data;
			a[i].innerHTML = email;
			a[i].href = "mailto:" + email;
		}
		if (a[i].className.search(/\bicq\b/) != -1) {
			var icq = a[i].firstChild.data + ' ' + a[i].lastChild.data;
			a[i].innerHTML = icq;
			a[i].href = "aim:goim?screenname=" + icq + "&message=Hello Jon";
		}
	}
}

Shadowbox.init();

/*
$(document).ready(function(){
	$(".portfolio-image img").fadeTo("slow", 0.6); // This sets the opacity of the thumbs to fade down to 60% when the page loads
	$("#header").fadeTo("slow", 1.0);
	$(".portfolio-image img").hover(function(){
		$(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
	},function(){
   		$(this).fadeTo("slow", 0.6); // This should set the opacity back to 60% on mouseout
	});
});
*/
