$(document).ready(function() {
	$('.thumb_video, .thumb').click(function() {
		var id = $(this).attr('id');
		$.ajax({
			type: "POST",
			url: '/rotatorPublic/out.php',
			data: ({gallId : id}),
			error: function() {
				//@todo write to log
			}
		});
	});
});
