function Jewellery_Magnetic_Products( data_arr )
{
	var res = "";
	for( grupa_no = 0; grupa_no < data_arr.length; grupa_no++ )
	{
		res += Jewellery_Magnetic_Products_Grupa( data_arr[grupa_no] );
	}
	document.write( res );
	return;
}


function Jewellery_Magnetic_Products_Grupa( data_arr )
{
	var res = "";
	res += "<font style='font-size:20px;color:#808080;font-weight:bold'>"+data_arr['name']+"</font><br>";
	res += "<table style='border-top:solid 1px #d0d0d0' border='0' cellspacing='0' cellpadding='0' width='100%'>";
	res += "<tr>";
	res += "<td width='100%'><img src='i/n.gif'></td>";
	res += "<td style='background-color:#d0d0d0'><img src='i/n.gif' height='3'></td>";
	res += "</tr>";
	res += "</table>";
	res += Jewellery_Magnetic_Products_Products( data_arr['products'] )
	return( res );
}


function Jewellery_Magnetic_Products_Products( data_arr )
{
	var res = "";
	var col = 0;
	res += "<table border='0' cellspacing='0' cellpadding='0' width='100%' style='margin-top:10px'>";
	for( product_no = 0; product_no < data_arr.length; product_no++ )
	{
		image_zoom_href = "ImageZoom('/i/products/440/"+data_arr[product_no]['image']+"','"+data_arr[product_no]['symb']+"',440,440)";
		if( col == 0 || col > 2 )
		{
			col = 0;
			res += "<tr>";
		}
		res += "<td valign='top' align='center'>";
			res += "<table border='0' cellspacing='0' cellpadding='0' style='margin-bottom:30px' width='120' height='120'>";
			res += "<tr>";
			res += "<td>";
				res += "<a href='javascript:void(null)' onClick=\""+image_zoom_href+"\" class='text' class='text' style='font-size:10px;text-decoration:none'>";
				res += "<img src='/i/products/120/"+data_arr[product_no]['image']+"' width='120' height='120' style='border:solid 1px #e0e0e0'><br>";
				res += data_arr[product_no]['symb'];
				res += "</a>";
			res += "</td>";
			res += "</tr>";
			res += "</table>";
		res += "</td>";
		col ++;
		if( col > 2 )
		{
			res += "</tr>";
		}
	}
	res += "</table>";
	return( res );
}
