/**
 * Add a remove link to each prod
 */
$(document).ready(function(){

	$('#product_group .small_item').each( function(i) {
		
		/* work out the id */
		var src = $('.item_image img',this).attr('src');
		var start = src.search(/product_tg\//i);
		var end = src.search(/\/thumbs/i); 
		
		var id = src.substring(start+11,end);
		
		/* add the remove link */
		$('.item_info',this).append('<a href='+SITE_ROOT+'products/favourites?remove='+id+' style="font-weight: normal;">remove</a>');
		
	});
	
});