$(document).ready(function() {			
	$("#hero,#herosmall").hide()	
	if($("#hero").size() >0) {
		$("#hero").fadeIn(1000);
	}
	if($("#herosmall").size() >0) {
		$("#herosmall").fadeIn(1000);
	}			
	$("#projectGallery a").click(function() {
		var src1 = $("img",this).attr("src");
		var src2 = src1.replace("_small","_medium");
		var pic = new Image();
		pic.onload = function() {
			$("#projectLarge").attr("src",src2);
		} 
		pic.src = src2;
		return false;
	
	});	
})
function fnPhoto(targ,d1,d2) {
	var winLeft 	= (screen.width - d1)/2;
	var winTop 		= (screen.height - d2)/2;	
	window.open('photo.php?id='+targ,'','width='+d1+',height='+d2+',top='+winTop+',left='+winLeft);
}


function fnE(inarr) {
	inarr = inarr.split(",");
	var out = "";
	for(i=inarr.length-1;i>=0;i--) {
		out += inarr[i];
	}
	document.write('<a href="mailto:'+out+'">'+out+'</a>');
	
}