<!-- Image Swap Function -->
function swapimages() {
 var img1 = new Image();
 img1.src = "images/fundraising-categories/order-takers/preportioned-cookie-dough-2.jpg";
 img1.onload = document['preportioned-cookie-dough'].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;
	
 var img3 = new Image();
 img3.src = "images/fundraising-categories/order-takers/delisheries-bake-mixes-2.jpg";
 img3.onload = document['delisheries-bake-mixes'].src = img3.src;
 
 var img4 = new Image();
 img4.src = "images/fundraising-categories/order-takers/otis-spunkmeyer-2.jpg";
 img4.onload = document['otis-spunkmeyer'].src = img4.src;

}