$(document).ready(function() {


				$(".sub .item").click(function(){
					$(this).find(".descr").slideToggle();

				}, function() {
					$(this).find(".descr").slideToggle();
					
				});	
				
				$(".action-panel").hover(function(){
					$(this).animate({ marginLeft: "-10px", marginTop: "-10px", padding: "20px" }, 300 );
					$(this).find(".submit").stop().animate({ marginLeft: "10px", marginTop: "10px" }, 300 );

				}, function() {
					$(this).stop().animate({ padding: "10px", marginLeft: "0px", marginTop: "0px" }, 300 );
					$(this).find(".submit").stop().animate({ marginLeft: "0px", marginTop: "0px" }, 300 );
				});					

				// textarea focus.
				
				$(".action-panel textarea[name=bericht]").focus(function() {
					$(this).css("color", "#f3ff92");
					if ($(this).val() == "Type 'm hier en laat je gaan!") {
						$(this).val("");
					}
				});
				$(".action-panel textarea[name=bericht]").blur(function() {
					$(this).css("color", "#ffff00");
					if ($(this).val() == "") {
						$(this).val("Type 'm hier en laat je gaan!");
					}
				});

				
				// ui actions
				
				$(".action-panel").draggable();
				//$("#frustraties").draggable();
				
				 


});
