function loadImgSkulls(img){
var imgNameSkulls = "skulls"; // name of the big image
var srcs = ["images/skulls_full_large.jpg","images/skulls_full_large.jpg","images/skulls_close_large.jpg","images/skulls_live_large.jpg","big4.jpg"]; // array of SRC's for the big i
document.images[imgNameSkulls].src=srcs[img];
}

function loadImgPinups(img)
{var imgNamePinups = "pinups"; // name of the big image
var srcs = ["images/pinups_full_large.jpg","images/pinups_full_large.jpg","images/pinups_close_large.jpg","images/pinups_live_large.jpg","big4.jpg"]; // array of SRC's for the big i
document.images[imgNamePinups].src=srcs[img];
}

function loadImgStars(img)
{var imgNameStars = "stars"; // name of the big image
var srcs = ["images/stars_full_large.jpg","images/stars_full_large.jpg","images/stars_close_large.jpg","images/stars_live_large.jpg","big4.jpg"]; // array of SRC's for the big image
document.images[imgNameStars].src=srcs[img];
}

function loadImgNew(img)
{var imgNameNew= "new"; // name of the big image
var srcs = ["images/grey_black_L.jpg","images/grey_black_L.jpg","images/grey_black_blue_L.jpg","images/grey_blue_red_L.jpg","images/nat_black_L.jpg","images/red_blue_black_L.jpg","images/red_grey_black_L.jpg"]; // array of SRC's for the big image
document.images[imgNameNew].src=srcs[img];
}

function loadImgCustom(img)
{var imgNameCustom= "custom"; // name of the big image
var srcs = ["images/custom_purple_L.jpg","images/custom_purple_L.jpg","images/custom_green_L.jpg"]; // array of SRC's for the big image
document.images[imgNameCustom].src=srcs[img];
}

