// jQuery Document

$(document).ready(function(){	
						   
	$("#plaatsen").click(function () {
	  $("#berichtPlaatsen").show("slow");
	});	
	$("#sluiten").click(function () {
	  $("#berichtPlaatsen").hide("slow");
	});	

	$("#promotie").click(function () {
	  $("#promotiePlaatsen").show("slow");
	});	
	$("#sluitenPromotie").click(function () {
	  $("#promotiePlaatsen").hide("slow");
	});	


	$(".deleteMessage").click(function () {
	  $(".controlDelete").show("slow");

	});
	$(".cancelDelete").click(function () {
	  $(".controlDelete").hide("slow");
	});	
});

$(function() {
		$("#content").tabs();
	});


