$(document).ready(function(){
	$('.flagToAdd').bind('click',function(){
		var loadingHTML = '<img src="/assets/images/loading-small.gif" />'
		$(this).html(loadingHTML)
		var idArray = $(this).attr('id').split('-');
		var merchantID = idArray[1];
		$.get('/xhr/addToFavorites.cfm?v=' + Math.random(), {merchantID:merchantID}, 
		function(response){
			
			if(response.search('ERROR_') != -1){
				var alertMessage = response.replace('ERROR_', '');
				alert(alertMessage);
				$('.flagToAdd').html('cannot add more favorites')	
				$('.flagToAdd').unbind('click')
				$('.flagToAdd').removeClass('cursor')
				return;	
			}
			
			var merchantID = $.trim(response);
			$('#addFav-' + merchantID).html('added to your favorites')	
			$('#addFav-' + merchantID).unbind('click')
			$('#addFav-' + merchantID).removeClass('cursor')
			
			if($('#totalFavorited-' + merchantID).html() != '')
			{
				var totalFavorited  = $('#totalFavorited-' + merchantID).html();
				totalFavorited++
				$('#totalFavorited-' + merchantID).html(totalFavorited);
			}	
		})	
	})	
})
