/*<![CDATA[*/	
	$(document).ready(function()
	{  	
		/**
		 * FOTOS
		 */
		
		$(".photo").fadeTo("slow", 0.8); 
		$(".photo").hover(function()
		{  
			$(this).stop().animate({ opacity:1.0 , borderColor: "white" }, { queue: false, duration: "slow" });
		}, function()
		{  
			$(this).stop().animate({ opacity:0.8, borderColor: "black" }, { queue: false, duration: "slow" });
		});
		
		/**
		 * REACTIE NIET OK
		 */
		$(".notok").show();
		$(".notok").click(function()
		{
			var messageId = $(this).attr("id");
			$.ajax({
				type: "POST",
				url: "report_reaction.php",
				data: "id=" + messageId,
				success: function(msg){
					alert("Je melding is binnen. Bedankt voor de hulp!");
				}
			});
		});	
	});
/* ]]> */
