/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Jeremy Keith / Anonymous | http://www.alistapart.com/articles/imagegallery/ */

/* Mouseover for all other images; hv/nm */

function showPic(whichpic) {
  if (document.getElementById) {
    document.getElementById('placeholder').src = whichpic.href;
	document.getElementById("miniPortfolioScreen").className = "miniPortfolioScreenOn";
    return false;
  } else {
  return true;
  }
}

function defaultScreen(whichpic) {
  if (document.getElementById) {	
	document.getElementById('placeholder').src = 'images/minifolio_default.gif';	
	document.getElementById("miniPortfolioScreen").className = "miniPortfolioScreenOff";
    return false;
  } else {
  return true;
  }
}

//Add Timeout before screen turns back to miniPortfolioScreenOff
//var t=setTimeout("alert('2 seconds!')",2000);