
//Written by Brandon More




$(document).ready(function(){

var images = $(".thumbBox").children("img");
var bigImage = $(".image-l");
var bigBox = $(".leftBox a");

images.click(
	function(){
		var source = $(this).attr("src");
		var image = $(document.createElement('img'));
		
		image.attr("src", source);
		bigBox.html("");
		bigBox.html(image);
		bigBox.attr("href", source);
		
	}
);



});



















