function preLoad() {
	if (document.images) {
		img1 = new Image()
		img1.src = "images/menu/premium_rose_petals-on.gif"
		img2 = new Image()
		img2.src = "images/menu/confetti_rose_petals-on.gif"
		img3 = new Image()
		img3.src = "images/menu/colours-on.gif"
		img4 = new Image()
		img4.src = "images/menu/bougainvillea_petals-on.gif"
		img5 = new Image()
		img5.src = "images/menu/peony_petals-on.gif"
		img6 = new Image()
		img6.src = "images/menu/fresh_rose_petals-on.gif"
		img7 = new Image()
		img7.src = "images/menu/throwing_cones-on.gif"
		img8 = new Image()
		img8.src = "images/menu/petal_pouches-on.gif"
		img9 = new Image()
		img9.src = "images/menu/heads-on.gif"
		img10 = new Image()
		img10.src = "images/menu/buds-on.gif"
		img11 = new Image()
		img11.src = "images/menu/order-on.gif"
		img12 = new Image()
		img12.src = "images/menu/customized_order-on.gif"
		img13 = new Image()
		img13.src = "images/menu/track_orders-on.gif"
		img14 = new Image()
		img14.src = "images/menu/pints_and_jugs-on.gif"
		img15 = new Image()
		img15.src = "images/menu/table_decorations-on.gif"
		img16 = new Image()
		img16.src = "images/menu/our_samples-on.gif"
		img17 = new Image()
		img17.src = "images/menu/your_samples-on.gif"
		img18 = new Image()
		img18.src = "images/menu/great_tips-on.gif"
		img19 = new Image()
		img19.src = "images/menu/freeze_drying-on.gif"
		img20 = new Image()
		img20.src = "images/menu/delivery_methods-on.gif"
		img21 = new Image()
		img21.src = "images/menu/wholesale-on.gif"
		img22 = new Image()
		img22.src = "images/menu/all_about_us-on.gif"
		img23 = new Image()
		img23.src = "images/menu/get_in_touch-on.gif"
	}
}

function imageOn(name) {
	if (document.images) {
		document.images[name].src = "images/menu/" + name + "-on.gif";
	}
}

function imageOff(name) {
	if (document.images) {
		document.images[name].src = "images/menu/" + name + ".gif";
	}
}

preLoad()
