function jumpTo(URL){
	window.location.href = "/products/" + URL.options[URL.selectedIndex].value;
}

swapTabs = function (ref, id) {
	var x = $('tabrow').childNodes.length
	for (var i = 0; i < x; i++) {
		$('tabrow').childNodes[i].className = "tab"
	}

	$(ref).className = "tabSelected"
	$('tabbed-content').innerHTML = $(id).innerHTML
}

function trytenProdFocus(ref, bigimage) {
	$('MainImage').src = ref
}

function trytenProdClearFocus(ref) {
	var x = $('thumbRow').childNodes.length
	for (var i = 0; i < x; i++) {
		if ($('thumbRow').childNodes[i].nodeType == 1) {
			$('thumbRow').childNodes[i].className = 'thumboff'
		}
	}
	$(ref).className='thumb';
}