$(document).ready(function() {
   		var timeOut = 3								
	$(".addart").click(function(){ 
		var element = this;
		$(this).prev("#messageBoxCat").text("Artikel toegevoegd!").fadeIn(); 
		$(this).prev("#messageBoxCat").css("display", "block");
		setTimeout(function() {	
			    $(element).prev("#messageBoxCat").fadeOut();
			    $(element).prev("#messageBoxCat").css("display", "none");
		    }, timeOut * 1000);
	});
	
});


//Alertbox adding artikel (temp)
function displayAlertMessage(message) {
	var timeOut = 3
	    jQuery('#messageBox').text(message).fadeIn()
	    jQuery('#messageBox').css("display", "block")
		    setTimeout(function() {
			    jQuery('#messageBox').fadeOut()
			    jQuery('#messageBox').css("display", "none")
		    }, timeOut * 1000);
}

//Alertbox adding artikel (permanent)
function displayAlert(message) {
	    jQuery('#messageBox').text(message).fadeIn()
	    jQuery('#messageBox').css("display", "block")
}


