arr1 = new Image(50,30);
arr1.src="graphics/arrows/5.gif"
arr2 = new Image(50,30);
arr2.src="graphics/arrows/6.gif"
arr3 = new Image(50,30);
arr3.src="graphics/arrows/7.gif"
arr4 = new Image(50,30);
arr4.src="graphics/arrows/8.gif"
arr5 = new Image(50,30);
arr5.src="graphics/arrows/nexta.gif"


home_1 = new Image(16,16);
home_1.src="graphics/home_1.gif"
cards_1 = new Image(16,16);
cards_1.src="graphics/cards_1.gif"
giftbags_1 = new Image(16,16);
giftbags_1.src="graphics/giftbags_1.gif"
stationery_1 = new Image(95,17);
stationery_1.src="graphics/stationery_1.gif"
books_1 = new Image(16,16);
books_1.src="graphics/books_1.gif"
comingsoon_1 = new Image(16,16);
comingsoon_1.src="graphics/comingsoon_1.gif"
wrap_1 = new Image(16,16);
wrap_1.src="graphics/wrap_1.gif"


function setCheckedValue(radioObj, newValue) {
	if(!radioObj)
		return;
	var radioLength = radioObj.length;
	if(radioLength == undefined) {
		radioObj.checked = (radioObj.value == newValue.toString());
		return;
	}
	for(var i = 0; i < radioLength; i++) {
		radioObj[i].checked = false;
		if(radioObj[i].value == newValue.toString()) {
			radioObj[i].checked = true;
		}
	}
}


