// fotopage functions$(document).ready(function(){	// Like +1	$("#like").click(function () {		$.ajax({		  url: "/index/ajax_vote?vote=like&page=foto&entry_id="+entry_id,		  cache: false,		  success: function(data){			$("#likes").html(data);		  }		});		});	// dislike -1	$("#dislike").click(function () {				$.ajax({		  url: "/index/ajax_vote?vote=dislike&page=foto&entry_id="+entry_id,		  cache: false,		  success: function(data){			$("#dislikes").html(data);		  }		});			});	// lightbox	$(function(){		$.Lightbox.construct({				show_helper_text: false,				download_link: true,				auto_resize: true		});	});});
