$("#loginbutton").live('click',function(){
	var button = $(this);

	if($("#topbar").height() > 4){

		$("#topbarcontainer").fadeOut();
		$("#topbarcontainer2").fadeOut();
		button.removeClass("clicked");
		$("#topbar").animate({
			height: '4'
		}, 500, function() {

		});

	} else {

		$("#topbar").animate({
			height: '35px'
		}, 500, function() {
		// Animation complete.
			$("#topbarcontainer").fadeIn();
			button.addClass("clicked");
		 });
	}
});


$("#nieuwsbriefbutton").live('click',function(){
	var button = $(this);

	if($("#topbar").height() > 4){

		$("#topbarcontainer").fadeOut();
		$("#topbarcontainer2").fadeOut();
		button.removeClass("clicked");
		$("#topbar").animate({
			height: '4'
		}, 500, function() {

		});

	} else {

		$("#topbar").animate({
			height: '35px'
		}, 500, function() {
		// Animation complete.
			$("#topbarcontainer2").fadeIn();
			button.addClass("clicked");
		 });
	}
});

$(document).ready(function(){ activatePlaceholders(); });
