$(document).ready(function() {
	$(".image_link").fancybox({
		'hideOnContentClick': true
	});
  $('#new_comment').validate({
    messages: {
      "comment[name]": "You need to put your name!",
      "comment[text]": "You need to write a comment!"
    }
  });
});