/*
	Click on a small image to display the fullsize version of that image in the left box
	Is this small, efficient code or what? :)
	Written by Niels Heidenreich (nh@ngin.de) 20090919
*/

document.getElementById("portfolio_thumb_1").onclick = switch_image;
document.getElementById("portfolio_thumb_2").onclick = switch_image;
document.getElementById("portfolio_thumb_3").onclick = switch_image;

function switch_image(e) {
	document.getElementById("box_image_left").src = this.src.replace(/small/, "large");
}