<!-- Image Swap Function -->
function swapimages() {
 var img1 = new Image();
 img1.src = "images/fundraising-categories/order-takers/cheesecakes-2.jpg";
 img1.onload = document['cheesecakes'].src = img1.src;
	
 var img2 = new Image();
 img2.src = "images/fundraising-categories/order-takers/cookie-dough-cheesecakes-2.jpg";
 img2.onload = document['cookie-dough-cheesecakes'].src = img2.src;
}
