function setDynamicLinks () {


for (i = 1; i < myProducts.length; i++) {
	myProLinks[i] = '<a href="http://sandoz.domainfactory-kunde.de/sandoz_de/patienten/index.php?ma=' + myProdID[i] + '&keepThis=true&TB_iframe=true&height=300&width=500" title="" class="thickbox">' + myProducts[i] + '</a>';
}

var str = $('div#col-2').html();
	for (i = 1; i < myProducts.length; i++) {
		str =  str.replace( new RegExp( myProducts[i], "g"), myProLinks[i]);
	}
$('div#col-2').html(str);


}