﻿
$(document).ready(function() {
	var all_checked = false;
	$('#check_all_vehicles').click(function() {
		all_checked = ! all_checked;
		$('#hit_list :checkbox').each(function() {
			$(this).attr('checked', all_checked)
		})
	});
	$(':text[name^=parking_comment]')
		.after(' <a class="next" href="javascript:void(0)">Mentés</a>')
		.next()
			.click(function() {
				if ($(this).prev().attr('name').match(/\[(\d+)\]/))
				{
					var id = RegExp.$1;
					$('#selected_vehicle_' + id)
						.attr('checked', true);
					$('#method_save_comment').click();
				}
			});
});
/*
<div class="button" id="option_remove"><a href="javascript:void(0)">Eltávolít</a></div>
<div class="button" id="option_compare"><a href="javascript:void(0)">Összehasonlít</a></div>
<div class="button" id="option_save_comment"><a href="javascript:void(0)">Feljegyzések mentése</a></div>
*/
