$(document).ready(function() {
	$('#bookmarkLink').click(function() {

		// retrieve the shopId
		var shopId = $(this).parent().attr('title');

		// check if shop must be added to bookmark or remove
		// based on title of #bookmarkLink
		if($(this).attr('title') == 'Voeg toe aan favorieten')
		{
			// make ajax request to add bookmark
			$.ajax({
				type: "GET",
				url: getBaseUrl() + "/shop/bookmarks/",
				data: "shop_id=" + shopId + "&mode=add",
				success: function(){
					// change button text
					$('#bookmarkLink').html('Verwijder uit favorieten');

					// change title attribute, so next time delete will be triggered
					$('#bookmarkLink').attr('title', 'Verwijder uit favorieten');

					// show success message
					$('div.success').remove();
                    $('div.messageDiv').remove();
                    $('div.freeFloat').remove();
					$('#mainContent_container').before('<div class="freeFloat"><div class="messageDiv"><div class="success"><ul><li>De winkel is succesvol toegevoegd aan je favorieten</li></ul></div></div></div>');
				}
			});
		}
		else
		{
			// make ajax request to remove bookmark
			$.ajax({
				type: "GET",
				url: getBaseUrl() + "/shop/bookmarks/",
				data: "shop_id=" + shopId + "&mode=remove",
				success: function(){
					// change button text
					$('#bookmarkLink').html('Voeg toe aan favorieten');

					// change title attribute, so next time add will be triggered
					$('#bookmarkLink').attr('title', 'Voeg toe aan favorieten');

					// show success message
					$('div.success').remove();
                    $('div.messageDiv').remove();
                    $('div.freeFloat').remove();
					$('#mainContent_container').before('<div class="freeFloat"><div class="messageDiv"><div class="success"><ul><li>De winkel is succesvol verwijderd uit je favorieten</li></ul></div></div></div>');
				}
			});
		}

        return false;
	});
});
