//javascript:switchSection('"+t.id+"');"

var productURL = new Array("products_active.html", "products_in_home.html", "products_junior.html", "products_senior.html");

function switchSection(productId){
	//alert("productId = " + productId + ", productURL = " + productURL[productId] + ", currentProductId = " + currentProductId);
	if (currentProductId == productId)
		return;
	
	document.location.href = productURL[productId];
}
