$(document).ready(function() {
	/*
	$('#profile-pictures a').hover(
			function () {
				$(this).addClass('hover');
				console.log("ok");
			}, 
			function() {
				$(this).removeClass('hover');
			}
		);*/

		$("#profile-picture a").hover(
		  function () {
		    $(this).addClass("hover");
		  },
		  function () {
		    $(this).removeClass("hover");
		  }
		);
	
});
