
			jQuery(document).ready(function(){
				jQuery('.tx-tcbrproductlist-pi1 a.productuid').click(function(){
					tmp = jQuery(this).attr('id').split('_');
					productID = tmp[1];

					var myDate = new Date();
					var wishConf = {};
					
					wishConf['eID'] = 'ajax_1';
					wishConf['unique'] = myDate.getTime();
					wishConf['language'] = 115;
					wishConf['addtowishlist'] = 1;						
					wishConf['productUid'] = productID;	
					
					AJAXaddToWishlistURL = '';
					
					if(typeof wishConf != 'undefined'){
						for(key in wishConf){
							AJAXaddToWishlistURL = AJAXaddToWishlistURL + key + '=' + wishConf[key] + '&';
						}
					}

					AJAXaddToWishlistURL = AJAXaddToWishlistURL.substr(0,AJAXaddToWishlistURL.length-1);
					AJAXaddToWishlistURL = 'http://' + top.location.host + top.location.pathname + '?' + encodeURI(AJAXaddToWishlistURL);
				
					$.getJSON(AJAXaddToWishlistURL, function(data){
						if(data['status'] > 0){
							jQuery('.message_' + productID).text(data['label']);
							jQuery('.message_' + productID).fadeIn().fadeOut(2500);
						}
					});
					
					return false;
				});
			});
		