// JavaScript Document
var product = document.getElementById('product');
	childProduct = document.getElementById('product').childNodes;
	var largeHeight;
	var c;
	var count=0;

	if(navigator.appName == 'Netscape'){
		var totalData = childProduct.length;largeHeight=0;
		for(var i=0;i<(childProduct.length-2);i++){
			var startCol,sc;
			c=i+1;
			i=i+1;
			if(count%3 == 0){
				largeHeight=0;
				startCol = (count/3);
				sc=startCol;
				sc=(sc*6);
				for(l=sc;l<(sc+6) && l<(totalData-1);l++){
					l=l+1;
					if(largeHeight<childProduct[l].offsetHeight){
						largeHeight=childProduct[l].offsetHeight;
					}
				}
			}
			if(c<totalData){
//				if (childProduct[c].childNodes.length > 1)
					childProduct[c].childNodes[1].style.height=largeHeight+'px';
			}
			count=count+1;
		}
	}else{
		var totalData = childProduct.length;
		for(var j=0;j<=childProduct.length;j++){
			var startCol,sc,largeHeight;
			c=j;//alert(totalData);
			if(count%3 == 0){
				largeHeight=0;
				startCol = (count/3);
				sc=startCol;
				sc=(sc*3);
				for(l=sc;l<(sc+3) && l<totalData;l++){
					if(largeHeight<childProduct[l].offsetHeight)
						largeHeight=childProduct[l].offsetHeight;
				}
			}
			
			if(c<totalData){
//				if (childProduct[c].childNodes.length > 1)
					childProduct[c].childNodes[0].style.height= 5 + largeHeight +'px';
			}
			count=count+1;
		}
	}

