$("a:not([href*=http://www.fintool.nl])").append("<span class='External'>?</span>");

function wait() {
	$("#checkDoc").show();
};

//Cufon.replace('h1', { fontFamily: 'helvetica', hover: 'true',textShadow: '#999 1px 1px'});
Cufon.replace('h1, h2, h3, .hNav, .payOff, .topnav li a, .kicker', { fontFamily: 'helvetica', hover: 'true'});
Cufon.replace('.f_nav, .c_nav, .navVertical, .chapeau, .readOn, .label, .navlist li a, .crumb li', { fontFamily: 'helvetica', hover: 'true'});

	addToCart = function(articleId){
			$('.mobileSite').hide();
			$.getJSON('/ehio/site/cart.cfc?wsdl', {
		  		method: 'addCart',
		  		returnformat: 'json',
		  		queryformat: 'column',
		  		cache: 'false',
		  		articleId: articleId
		  		}
					,isAdded
					);
			}

		
		// verwerk JSON 
	  var isAdded = function(addedTrue){
			if (addedTrue.MESSAGE=='error') {
	      // login fout
				$('#cartSpace').hide('blind', 100).show('slide',{direction: "down"}, 1000);
	      $('#cartSpace').load('/includes/cart.cfm?nocache=1')
				$('#delete').show()

	    }
	    else {
				var addedId = addedTrue.DATA.ID;
				//console.log(addedId);
				$('#cartSpace').hide('blind', 100).show('slide',{direction: "down"}, 1000);
	      $('#cartSpace').load('/includes/cart.cfm?nocache=' + Math.random()); 
				window.location.href = "/pagina-7000";
	    };
	  }
